Handle “-1” search

release
Etienne Lemay 2016-10-14 15:43:18 -04:00
parent dc93357137
commit 44f9914b25
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ function search(value, maxResults = 75) {
aIndex = index,
length = 0
if (value == '-') {
if (value == '-' || value == '-1') {
return [emojisList['-1']]
}