diff --git a/src/renderer/components/mixins/reloadable.vue b/src/renderer/components/mixins/reloadable.vue index 2ebe155b..b24ce284 100644 --- a/src/renderer/components/mixins/reloadable.vue +++ b/src/renderer/components/mixins/reloadable.vue @@ -12,12 +12,15 @@ export default { }) await this.$store.dispatch('TimelineSpace/stopUserStreaming') await this.$store.dispatch('TimelineSpace/stopLocalStreaming') + await this.$store.dispatch('TimelineSpace/stopDirectMessagesStreaming') await this.$store.dispatch('TimelineSpace/Contents/Home/fetchTimeline', account) await this.$store.dispatch('TimelineSpace/Contents/Local/fetchLocalTimeline', account) + await this.$store.dispatch('TimelineSpace/Contents/DirectMessages/fetchTimeline', account) this.$store.dispatch('TimelineSpace/startUserStreaming', account) this.$store.dispatch('TimelineSpace/startLocalStreaming', account) + this.$store.dispatch('TimelineSpace/startDirectMessagesStreaming', account) return account } }