メッセージでのカスタム絵文字対応

This commit is contained in:
syuilo 2018-11-06 03:57:02 +09:00
parent 45ccb6402f
commit 6882ed7df0

View File

@ -187,13 +187,14 @@ export default Vue.component('misskey-flavored-markdown', {
}
case 'emoji': {
const customEmojis = (this.os.getMetaSync() || { emojis: [] }).emojis || [];
return [createElement('mk-emoji', {
attrs: {
emoji: token.emoji,
name: token.name
},
props: {
customEmojis: this.customEmojis
customEmojis: this.customEmojis || customEmojis
}
})];
}