diff --git a/pages/users/users.go b/pages/users/users.go index 6127684f..fa8c5239 100644 --- a/pages/users/users.go +++ b/pages/users/users.go @@ -73,6 +73,10 @@ func Editors(ctx *aero.Context) string { score[entry.UserID] = current + entryScore } + for ignore := range arn.StreamIgnoreAnimeDifferences() { + score[ignore.CreatedBy] += arn.IgnoreAnimeDifferenceEditorScore + } + sort.Slice(users, func(i, j int) bool { scoreA := score[users[i].ID] scoreB := score[users[j].ID]