|
|
@@ -35,7 +35,7 @@ namespace molilian.core
|
|
|
{
|
|
|
var list = List();
|
|
|
if (!list.Any()) return null;
|
|
|
- return list.Where(e => IsMatch(e, mode, accountid)).FirstOrDefault();
|
|
|
+ return list.Where(e => IsMatch(e, mode, accountid)).OrderBy(l => Guid.NewGuid()).FirstOrDefault();
|
|
|
}
|
|
|
|
|
|
|