fixing a git merge error.

This commit is contained in:
cutestnekoaqua 2023-02-05 12:38:40 +01:00
parent 4bd399f321
commit 44c6bc7dd0
No known key found for this signature in database
GPG key ID: 6BF0964A5069C1E0

View file

@ -71,6 +71,12 @@ export async function toDbReaction(
if (Object.keys(legacies).includes(reaction)) return legacies[reaction];
// Convert old heart to new
if (reaction === "♥️") return "❤️";
// Allow unicode reactions
const match = emojiRegex.exec(reaction);
if (match) {
const unicode = match[0];
return unicode;
}
const custom = reaction.match(/^:([\w+-]+)(?:@\.)?:$/);
if (custom) {