diff options
Diffstat (limited to 'src/web/app/desktop/views/components')
| -rw-r--r-- | src/web/app/desktop/views/components/posts.post.vue | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/web/app/desktop/views/components/posts.post.vue b/src/web/app/desktop/views/components/posts.post.vue index 6fe097909b..a05a498110 100644 --- a/src/web/app/desktop/views/components/posts.post.vue +++ b/src/web/app/desktop/views/components/posts.post.vue @@ -142,8 +142,10 @@ export default Vue.extend({ } }, created() { - this.connection = (this as any).os.stream.getConnection(); - this.connectionId = (this as any).os.stream.use(); + if ((this as any).os.isSignedIn) { + this.connection = (this as any).os.stream.getConnection(); + this.connectionId = (this as any).os.stream.use(); + } }, mounted() { this.capture(true); @@ -154,8 +156,11 @@ export default Vue.extend({ }, beforeDestroy() { this.decapture(true); - this.connection.off('_connected_', this.onStreamConnected); - (this as any).os.stream.dispose(this.connectionId); + + if ((this as any).os.isSignedIn) { + this.connection.off('_connected_', this.onStreamConnected); + (this as any).os.stream.dispose(this.connectionId); + } }, methods: { capture(withHandler = false) { |