Fixed shortcuts for emoji recent

This commit is contained in:
Igor Zhukov 2015-02-13 19:13:03 +03:00
parent f2ce971d0b
commit 6aabc78bf2

View File

@ -53,6 +53,7 @@
if (Array.isArray(shortcut)) { if (Array.isArray(shortcut)) {
shortcut = shortcut[0]; shortcut = shortcut[0];
} }
if (shortcut && typeof shortcut !== 'string') {
if (shortcut.charAt(0) == ':') { if (shortcut.charAt(0) == ':') {
shortcut = shortcut.substr(1, shortcut.length - 2); shortcut = shortcut.substr(1, shortcut.length - 2);
} }
@ -60,6 +61,7 @@
result.push({code: code, rate: 1}); result.push({code: code, rate: 1});
} }
} }
}
callback(result); callback(result);
}); });
}); });