diff --git a/internal/db/bundb/tag.go b/internal/db/bundb/tag.go index c6298ee64..2434edfa6 100644 --- a/internal/db/bundb/tag.go +++ b/internal/db/bundb/tag.go @@ -288,5 +288,5 @@ func (t *tagDB) GetAccountIDsFollowingTagIDs(ctx context.Context, tagIDs []strin } accountIDs = append(accountIDs, tagAccountIDs...) } - return util.UniqueStrings(accountIDs), nil + return util.Deduplicate(accountIDs), nil }