Merge branch 'develop' of codeberg.org:calckey/calckey into develop
This commit is contained in:
commit
bb0fe93631
|
@ -17,5 +17,3 @@ pipeline:
|
|||
event: tag
|
||||
tag: v*
|
||||
|
||||
depends_on:
|
||||
- prSecurityCheck
|
||||
|
|
|
@ -72,6 +72,13 @@ export async function toDbReaction(
|
|||
// 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) {
|
||||
const name = custom[1];
|
||||
|
|
Loading…
Reference in New Issue