Skip to content

Commit

Permalink
fix: remove breaking change to emojistoshowfilter
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Jan 5, 2020
1 parent fec43c6 commit 498c244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/picker/emoji-search.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export class EmojiSearch {
if (emojisToShowFilter) {
results = results.filter((result: EmojiData) => {
if (result && result.id) {
return emojisToShowFilter(this.emojiService.names[result.id].unified);
return emojisToShowFilter(this.emojiService.names[result.id]);
}
return false;
});
Expand Down

0 comments on commit 498c244

Please sign in to comment.