mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 03:25:14 +00:00
Fix custom emojis not displaying in CWs and fav/boost notifications (#37306)
This commit is contained in:
parent
7d9d3de972
commit
962ae88caf
2 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ export const ContentWarning: React.FC<{
|
|||
<EmojiHTML
|
||||
as='span'
|
||||
htmlString={text}
|
||||
extraEmojis={status.get('emoji') as List<CustomEmoji>}
|
||||
extraEmojis={status.get('emojis') as List<CustomEmoji>}
|
||||
/>
|
||||
</StatusBanner>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ export const EmbeddedStatusContent: React.FC<{
|
|||
className={className}
|
||||
lang={status.get('language') as string}
|
||||
htmlString={status.get('contentHtml') as string}
|
||||
extraEmojis={status.get('emoji') as List<CustomEmoji>}
|
||||
extraEmojis={status.get('emojis') as List<CustomEmoji>}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue