Port 85470ec872 to glitch emoji picker.

Fixes #541.
This commit is contained in:
David Yip 2018-06-15 12:10:45 -05:00
parent afceef74c2
commit e130007fb2
No known key found for this signature in database
GPG Key ID: 7DA0036508FCC0CC
1 changed files with 7 additions and 3 deletions

View File

@ -54,9 +54,13 @@ function addCustomToPool(custom, pool) {
index = {}; index = {};
} }
function search(value, { emojisToShowFilter, maxResults, include, exclude, custom = [] } = {}) { function search(value, { emojisToShowFilter, maxResults, include, exclude, custom } = {}) {
if (customEmojisList !== custom) if (custom !== undefined) {
addCustomToPool(custom, originalPool); if (customEmojisList !== custom)
addCustomToPool(custom, originalPool);
} else {
custom = [];
}
maxResults = maxResults || 75; maxResults = maxResults || 75;
include = include || []; include = include || [];