Only search unique terms

This commit is contained in:
Pavel Djundik 2024-11-16 23:33:38 +02:00
parent be2779da79
commit a84e11ad2a

View File

@ -16,8 +16,9 @@ export const searchBskyUser = async ({
userData.twAccountNameReplaceUnderscore,
userData.twDisplayName,
];
const uniqueSearchTerms = new Set(searchTerms);
for (const term of searchTerms) {
for (const term of uniqueSearchTerms) {
// one symbol is not a valid search term for bsky
if (!term || isOneSymbol(term)) {
continue;