summaryrefslogtreecommitdiff
path: root/src/client/app/common
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2019-02-15 08:38:59 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-02-15 08:38:59 +0900
commite4f799bf1dbf56e803cca16aa92f9c7110746dd2 (patch)
tree779986083c7570781464f9be7f5c863fc5121444 /src/client/app/common
parent:art: (diff)
downloadmisskey-e4f799bf1dbf56e803cca16aa92f9c7110746dd2.tar.gz
misskey-e4f799bf1dbf56e803cca16aa92f9c7110746dd2.tar.bz2
misskey-e4f799bf1dbf56e803cca16aa92f9c7110746dd2.zip
Hide localOnly from welcome TL (#4257)
Diffstat (limited to 'src/client/app/common')
-rw-r--r--src/client/app/common/views/components/welcome-timeline.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/app/common/views/components/welcome-timeline.vue b/src/client/app/common/views/components/welcome-timeline.vue
index 1150304810..d812549b1e 100644
--- a/src/client/app/common/views/components/welcome-timeline.vue
+++ b/src/client/app/common/views/components/welcome-timeline.vue
@@ -76,6 +76,7 @@ export default Vue.extend({
if (note.replyId != null) return;
if (note.renoteId != null) return;
if (note.poll != null) return;
+ if (note.localOnly) return;
this.notes.unshift(note);
},