Merge remote-tracking branch 'refs/remotes/origin/wip-flag-migration' into wip-flag-migration

This commit is contained in:
Carlosokumu 2024-09-03 18:00:06 +03:00
commit 19b2fa65fa
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -488,8 +488,8 @@ func (h *Handlers) CheckAccountStatus(ctx context.Context, sym string, input []b
res.FlagSet = append(res.FlagSet, flags["flag_account_success"])
res.FlagReset = append(res.FlagReset, flags["flag_account_pending"])
} else {
res.FlagReset = append(res.FlagSet, flags["flag_account_success"])
res.FlagSet = append(res.FlagReset, flags["flag_account_pending"])
res.FlagReset = append(res.FlagReset, flags["flag_account_success"])
res.FlagSet = append(res.FlagSet, flags["flag_account_pending"])
}
return res, nil
}