forked from rDrama/rDrama
1
0
Fork 0

fix commas

master
Aevann 2024-03-06 02:14:13 +02:00
parent 817752eca4
commit 2bc41bb010
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ const emojisSearchDictionary = {
if (this.dict[target] !== undefined && this.dict[target].tag === tag) if (this.dict[target] !== undefined && this.dict[target].tag === tag)
this.dict[target].emojiNames.push(emojiName); this.dict[target].emojiNames.push(emojiName);
else else
this.dict.splice(target ,0,new EmojisDictNode(tag, emojiName)); this.dict.splice(target, 0, new EmojisDictNode(tag, emojiName));
}, },
/** /**