Skip to content

Commit

Permalink
[chore] replace UniqueStrings with Deduplicate (#3154)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmethurst authored Jul 30, 2024
1 parent 47c2681 commit 42932f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/db/bundb/tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 42932f9

Please sign in to comment.