mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-09 06:15:49 +02:00
Cut down size of emoji-ordering.txt file
This commit is contained in:
parent
f7ed7703b4
commit
37e33b77ff
Resources/Plugins/emoji-keyboard
@ -117,8 +117,8 @@ ready(){
|
||||
continue;
|
||||
}
|
||||
|
||||
let decl = line.substring(0, line.indexOf(";")-1);
|
||||
let emoji = decl.split(" ").map(pt => convUnicode(parseInt(pt.substring(2), 16))).join("");
|
||||
let decl = line.substring(0, line.indexOf(";"));
|
||||
let emoji = decl.split(" ").map(pt => convUnicode(parseInt(pt, 16))).join("");
|
||||
|
||||
generated.push(TD.util.cleanWithEmoji(emoji));
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user