mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-11 00:31:34 +01:00
Fix emoji search not showing custom emoji when none are uncategorized (#11920)
Fix #11903
This commit is contained in:
parent
8c4b5f7cef
commit
0d2b60ab8b
1 changed files with 1 additions and 1 deletions
|
@ -99,4 +99,4 @@ export const buildCustomEmojis = (customEmojis) => {
|
|||
return emojis;
|
||||
};
|
||||
|
||||
export const categoriesFromEmojis = customEmojis => customEmojis.reduce((set, emoji) => set.add(emoji.get('category') ? `custom-${emoji.get('category')}` : 'custom'), new Set());
|
||||
export const categoriesFromEmojis = customEmojis => customEmojis.reduce((set, emoji) => set.add(emoji.get('category') ? `custom-${emoji.get('category')}` : 'custom'), new Set(['custom']));
|
||||
|
|
Loading…
Reference in a new issue