[Glitch] Fix bug with how Emojibase wasn't stripping characters

Port a4b8b9fe98c677f718e4b2c1ffe1755d58e7f8d7 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Echo 2026-01-09 19:38:22 +01:00 committed by Claire
parent 18d4606cce
commit aff69de399

View File

@ -1,8 +1,9 @@
import debug from 'debug';
import { fromUnicodeToHexcode } from 'emojibase';
import { emojiRegexPolyfill } from '@/flavours/glitch/polyfills';
import { VARIATION_SELECTOR_CODE } from './constants';
export function emojiLogger(segment: string) {
return debug(`emojis:${segment}`);
}
@ -46,7 +47,24 @@ export function anyEmojiRegex() {
}
export function emojiToUnicodeHex(emoji: string): string {
return fromUnicodeToHexcode(emoji, false);
const codes: string[] = [];
for (const char of emoji) {
const code = char.codePointAt(0);
if (code !== undefined) {
codes.push(code.toString(16).toUpperCase().padStart(4, '0'));
}
}
// Handles how Emojibase removes the variation selector for single code emojis.
// See: https://emojibase.dev/docs/spec/#merged-variation-selectors
if (
codes.at(1) === VARIATION_SELECTOR_CODE.toString(16).toUpperCase() &&
codes.length === 2
) {
codes.pop();
}
return codes.join('-');
}
function supportsRegExpSets() {