diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-04-15 21:30:49 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-04-15 21:30:49 +0900 |
| commit | 77ff7b9df0d8789919821c4fb3d1ed7944205845 (patch) | |
| tree | c263425fc66caf57203babbd6cd612779711dea9 /src/client | |
| parent | Fix application-name (diff) | |
| download | misskey-77ff7b9df0d8789919821c4fb3d1ed7944205845.tar.gz misskey-77ff7b9df0d8789919821c4fb3d1ed7944205845.tar.bz2 misskey-77ff7b9df0d8789919821c4fb3d1ed7944205845.zip | |
デフォルトでHTLを表示するように
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/desktop/views/home/timeline.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/home.vue | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/client/app/desktop/views/home/timeline.vue b/src/client/app/desktop/views/home/timeline.vue index f257f1fa97..1e6abac823 100644 --- a/src/client/app/desktop/views/home/timeline.vue +++ b/src/client/app/desktop/views/home/timeline.vue @@ -88,8 +88,6 @@ export default Vue.extend({ } else if (this.src == 'tag') { this.tagTl = this.$store.state.device.tl.arg; } - } else if (this.$store.state.i.followingCount == 0) { - this.src = 'hybrid'; } }, diff --git a/src/client/app/mobile/views/pages/home.vue b/src/client/app/mobile/views/pages/home.vue index af008ae26e..0d110bf2ee 100644 --- a/src/client/app/mobile/views/pages/home.vue +++ b/src/client/app/mobile/views/pages/home.vue @@ -130,8 +130,6 @@ export default Vue.extend({ } else if (this.src == 'tag') { this.tagTl = this.$store.state.device.tl.arg; } - } else if (this.$store.state.i.followingCount == 0) { - this.src = 'hybrid'; } }, |