Merge branch 'develop' of codeberg.org:calckey/calckey into develop
This commit is contained in:
commit
bb0fe93631
|
@ -17,5 +17,3 @@ pipeline:
|
||||||
event: tag
|
event: tag
|
||||||
tag: v*
|
tag: v*
|
||||||
|
|
||||||
depends_on:
|
|
||||||
- prSecurityCheck
|
|
||||||
|
|
|
@ -72,6 +72,13 @@ export async function toDbReaction(
|
||||||
// Convert old heart to new
|
// Convert old heart to new
|
||||||
if (reaction === "♥️") return "❤️";
|
if (reaction === "♥️") return "❤️";
|
||||||
|
|
||||||
|
// Allow unicode reactions
|
||||||
|
const match = emojiRegex.exec(reaction);
|
||||||
|
if (match) {
|
||||||
|
const unicode = match[0];
|
||||||
|
return unicode;
|
||||||
|
}
|
||||||
|
|
||||||
const custom = reaction.match(/^:([\w+-]+)(?:@\.)?:$/);
|
const custom = reaction.match(/^:([\w+-]+)(?:@\.)?:$/);
|
||||||
if (custom) {
|
if (custom) {
|
||||||
const name = custom[1];
|
const name = custom[1];
|
||||||
|
|
Loading…
Reference in New Issue