Merge dev
This commit is contained in:
commit
998e6fd4d2
|
@ -16,4 +16,3 @@ pipeline:
|
|||
# Push new version when version tag is created
|
||||
event: tag
|
||||
tag: v*
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
// Allow unicode reactions
|
||||
const match = emojiRegex.exec(reaction);
|
||||
|
|
Loading…
Reference in New Issue