[chore] replace UniqueStrings with Deduplicate (#3154)

This commit is contained in:
tobi 2024-07-30 12:20:06 +02:00 committed by GitHub
parent 47c26818d6
commit 42932f9820
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -288,5 +288,5 @@ func (t *tagDB) GetAccountIDsFollowingTagIDs(ctx context.Context, tagIDs []strin
} }
accountIDs = append(accountIDs, tagAccountIDs...) accountIDs = append(accountIDs, tagAccountIDs...)
} }
return util.UniqueStrings(accountIDs), nil return util.Deduplicate(accountIDs), nil
} }