mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
[chore] replace UniqueStrings with Deduplicate (#3154)
This commit is contained in:
parent
47c26818d6
commit
42932f9820
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue