mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-24 14:32:54 +09:00
fixing a git merge error.
This commit is contained in:
parent
9afe5424c0
commit
0f8b7eb440
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user