summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2018-11-11 12:35:30 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2018-11-11 12:35:30 +0900
commit036d46c4597d62b2a7e164dda8b4dac6aa03cc8f (patch)
tree7c2638a70874e61671d2bb4db639243b6bf3029b /src/client/app/mobile/views
parentBetter text (diff)
downloadmisskey-036d46c4597d62b2a7e164dda8b4dac6aa03cc8f.tar.gz
misskey-036d46c4597d62b2a7e164dda8b4dac6aa03cc8f.tar.bz2
misskey-036d46c4597d62b2a7e164dda8b4dac6aa03cc8f.zip
show self host in unicode (#3200)
Diffstat (limited to 'src/client/app/mobile/views')
-rw-r--r--src/client/app/mobile/views/pages/welcome.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/app/mobile/views/pages/welcome.vue b/src/client/app/mobile/views/pages/welcome.vue
index 585bd4062b..9f8dfd17d9 100644
--- a/src/client/app/mobile/views/pages/welcome.vue
+++ b/src/client/app/mobile/views/pages/welcome.vue
@@ -76,6 +76,7 @@ import Vue from 'vue';
import i18n from '../../../i18n';
import { copyright, host } from '../../../config';
import { concat } from '../../../../../prelude/array';
+import { toUnicode } from 'punycode';
export default Vue.extend({
i18n: i18n('mobile/views/pages/welcome.vue'),
@@ -85,7 +86,7 @@ export default Vue.extend({
copyright,
stats: null,
banner: null,
- host,
+ host: toUnicode(host),
name: 'Misskey',
description: '',
photos: [],