[Glitch] Fix emoji search not showing custom emoji when none are uncategorized

Port 25c70115c1 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
lolsob-rspec
Eugen Rochko 2019-09-23 00:48:43 +02:00 committed by Thibaut Girka
parent adc53b625e
commit 526d24423c
1 changed files with 1 additions and 1 deletions

View File

@ -100,4 +100,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']));