This commit is contained in:
2022-01-10 16:13:14 +08:00
parent d0cf8768b4
commit 678005f179
2 changed files with 6 additions and 6 deletions

View File

@@ -78,9 +78,6 @@ func ForEachUser(f func(u *User) bool) {
func Codes(isFund bool) []string {
var codes = map[string]struct{}{}
ForEachUser(func(u *User) bool {
if u.IsStop() {
return true
}
cds := u.Codes(isFund)
for _, cd := range cds {
if _, ok := codes[cd]; ok {