From 4002471360fe49851037b28eee172ccd93bd66c9 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sat, 13 Feb 2021 02:21:35 +0900 Subject: [PATCH] fix --- src/client/pages/share.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/pages/share.vue b/src/client/pages/share.vue index f883f2f1af..a50a959f0f 100644 --- a/src/client/pages/share.vue +++ b/src/client/pages/share.vue @@ -78,9 +78,9 @@ export default defineComponent({ this.visibility = visibility; } else { // Mastodonと互換性を持たせてみる - if (this.visibility === 'unlisted') this.visibility = 'home'; - else if (this.visibility === 'private') this.visibility = 'followers'; - else if (this.visibility === 'direct') this.visibility = 'specified'; + if (visibility === 'unlisted') this.visibility = 'home'; + else if (visibility === 'private') this.visibility = 'followers'; + else if (visibility === 'direct') this.visibility = 'specified'; else this.visibility = null; }