1
0
Fork 0

feat: modify max accounts return to 100

merge-requests/4/head
MiaoWoo 2019-05-17 11:24:14 +08:00
parent 7624f268dd
commit dc06df700a
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ HostingCaller.GetAccountListByKey = function (Params,ppp,bRet)
}
arr.unshift(Data);
Item = Item.Next;
if(arr.length >= 30)
if(arr.length >= 100)
break;
}
var Ret = {result:1, arr:arr};