forked from FoundKeyGang/FoundKey
Fix custom emoji validation (#4528)
This commit is contained in:
parent
bd2ac515d1
commit
c65256d02b
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ export async function toDbReaction(reaction: string, enableEmoji = true): Promis
|
|||
return normalized;
|
||||
}
|
||||
|
||||
const custom = reaction.match(/:([\w+-]+):/);
|
||||
const custom = reaction.match(/^:([\w+-]+):$/);
|
||||
if (custom) {
|
||||
const emoji = await Emoji.findOne({
|
||||
host: null,
|
||||
|
|
Loading…
Reference in a new issue