Use sticker body for searching (#1347)

This commit is contained in:
greentore
2023-07-23 10:11:36 +02:00
committed by GitHub
parent f14d70ea35
commit 1a37fd0ca4

View File

@@ -598,7 +598,13 @@ export const NativeEmojiGroups = memo(
)
);
const getSearchListItemStr = (item: ExtendedPackImage | IEmoji) => `:${item.shortcode}:`;
const getSearchListItemStr = (item: ExtendedPackImage | IEmoji) => {
const shortcode = `:${item.shortcode}:`;
if ('body' in item) {
return [shortcode, item.body ?? ''];
}
return shortcode;
};
const SEARCH_OPTIONS: UseAsyncSearchOptions = {
limit: 26,
matchOptions: {