[Glitch] Display custom emoji in bio field names

Port 2582701b72 to glitch-soc
lolsob-rspec
Thibaut Girka 2019-07-23 10:33:25 +02:00
parent 403eca7ad6
commit 4eb0c50699
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export function normalizeAccount(account) {
if (account.fields) {
account.fields = account.fields.map(pair => ({
...pair,
name_emojified: emojify(escapeTextContentForBrowser(pair.name)),
name_emojified: emojify(escapeTextContentForBrowser(pair.name), emojiMap),
value_emojified: emojify(pair.value, emojiMap),
value_plain: unescapeHTML(pair.value),
}));