diff options
Diffstat (limited to 'src/web/app/common/views/components/post-html.ts')
| -rw-r--r-- | src/web/app/common/views/components/post-html.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/app/common/views/components/post-html.ts b/src/web/app/common/views/components/post-html.ts index adb025589d..37f60bd080 100644 --- a/src/web/app/common/views/components/post-html.ts +++ b/src/web/app/common/views/components/post-html.ts @@ -1,5 +1,5 @@ import Vue from 'vue'; -import * as pictograph from 'pictograph'; +import * as emojilib from 'emojilib'; import { url } from '../../../config'; import MkUrl from './url.vue'; @@ -92,7 +92,7 @@ export default Vue.component('mk-post-html', { return createElement('code', token.html); case 'emoji': - return createElement('span', pictograph.dic[token.emoji] || token.content); + return createElement('span', emojilib.lib[token.emoji] || token.content); } })); |