From 54e9147782a0027cf23e80dc6d57f1504c0d8ca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Acid=20Chicken=20=28=E7=A1=AB=E9=85=B8=E9=B6=8F=29?= Date: Mon, 5 Nov 2018 17:04:17 +0900 Subject: [PATCH] Refactoring codes refs: https://github.com/syuilo/misskey/pull/3117#pullrequestreview-171437187 --- src/client/app/common/views/components/emoji.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/app/common/views/components/emoji.vue b/src/client/app/common/views/components/emoji.vue index 6a078e023..7429aaaa5 100644 --- a/src/client/app/common/views/components/emoji.vue +++ b/src/client/app/common/views/components/emoji.vue @@ -37,10 +37,10 @@ export default Vue.extend({ methods: { exec() { const { emoji, raw, customEmojis } = this; - this.name = emoji || raw; - if (!raw && customEmojis && customEmojis.length) + this.name = emoji ? `:${emoji}:` : raw; + if (!raw && customEmojis && customEmojis.length) { this.url = customEmojis.find(x => findCustomEmoji(x, emoji)).url; - if (!this.url) { + } else { // *MEM: `customEmojis` always has a emoji named `emoji` const char = raw || lib[emoji] && lib[emoji].char; if (char) { this.url = `https://twemoji.maxcdn.com/2/svg/${char.codePointAt(0).toString(16)}.svg`;