forked from AkkomaGang/akkoma-fe
bugfix: don't error if emoji not found
This commit is contained in:
parent
15ec862da0
commit
ca8689fc88
1 changed files with 15 additions and 10 deletions
|
@ -234,16 +234,21 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'emojiCode': {
|
case 'emojiCode': {
|
||||||
return [h('div', {
|
const emoj = this.status.emojis.find((emoji) => emoji.shortcode === token.props.name)
|
||||||
class: 'still-image emoji img'
|
if (emoj) {
|
||||||
},
|
return [h('div', {
|
||||||
[h('img', {
|
class: 'still-image emoji img'
|
||||||
key: Math.random(),
|
},
|
||||||
title: token.props.name,
|
[h('img', {
|
||||||
alt: token.props.name,
|
key: Math.random(),
|
||||||
src: this.status.emojis.find((emoji) => emoji.shortcode === token.props.name).static_url
|
title: token.props.name,
|
||||||
})]
|
alt: token.props.name,
|
||||||
)]
|
src: this.status.emojis.find((emoji) => emoji.shortcode === token.props.name).static_url
|
||||||
|
})]
|
||||||
|
)]
|
||||||
|
} else {
|
||||||
|
return `:${token.props.name}:`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'unicodeEmoji': {
|
case 'unicodeEmoji': {
|
||||||
|
|
Loading…
Reference in a new issue