This commit is contained in:
aozhiwei 2024-04-20 15:36:25 +08:00
parent 5549033895
commit 21cf7ab1ba

View File

@ -624,6 +624,7 @@ func (this *team) checkMemberState() {
params := map[string]string{
"c": "User",
"a": "queryStatus",
"accountIds" : this.genAccountIdParam(),
}
url := fmt.Sprintf("%s/webapp/index.php",
mt.Table.Config.GetById(0).GetFriendapiUrl())
@ -664,6 +665,7 @@ func (this *team) genAccountIdParam() string {
param := ""
this.traverseMembers(
func (m common.Player) bool {
param = param + m.GetAccountId() + ","
return true
})
return param