mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-21 17:37:29 -07:00
fix: heart reaction
This commit is contained in:
parent
33f7e093e9
commit
be05847383
1 changed files with 3 additions and 3 deletions
|
@ -64,11 +64,11 @@ export async function toDbReaction(
|
|||
// 文字列タイプのリアクションを絵文字に変換
|
||||
if (Object.keys(legacies).includes(reaction)) return legacies[reaction];
|
||||
|
||||
// Unicode emoji
|
||||
// Unicode絵文字
|
||||
const match = emojiRegex.exec(reaction);
|
||||
if (match) {
|
||||
//return only first emoji
|
||||
return match[0];
|
||||
const unicode = match[0];
|
||||
return unicode.match('\u200d') ? unicode : unicode.replace(/\ufe0f/g, '');
|
||||
}
|
||||
|
||||
const custom = reaction.match(/^:([\w+-]+)(?:@\.)?:$/);
|
||||
|
|
Loading…
Reference in a new issue