aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreal <eal@waifu.club>2018-02-01 19:18:47 +0200
committereal <eal@waifu.club>2018-02-01 19:18:47 +0200
commit043e14d5cb929fca35b8d55c9008498146e90b8b (patch)
treefc8caae712247220881722ffa96b12bbccf4e83e
parent3ff39f9b392013856c26d63ef3a318b02287eb34 (diff)
Show chat only if channel is joined.
-rw-r--r--src/App.js2
-rw-r--r--src/modules/chat.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/App.js b/src/App.js
index 0636c47d..8e7acb42 100644
--- a/src/App.js
+++ b/src/App.js
@@ -24,7 +24,7 @@ export default {
logoStyle () { return { 'background-image': `url(${this.$store.state.config.logo})` } },
style () { return { 'background-image': `url(${this.background})` } },
sitename () { return this.$store.state.config.name },
- chat () { return this.$store.state.chat.channel }
+ chat () { return this.$store.state.chat.channel.state === 'joined' }
},
methods: {
activatePanel (panelName) {
diff --git a/src/modules/chat.js b/src/modules/chat.js
index b1244ebe..383ac75c 100644
--- a/src/modules/chat.js
+++ b/src/modules/chat.js
@@ -1,7 +1,7 @@
const chat = {
state: {
messages: [],
- channel: null
+ channel: {state: ''}
},
mutations: {
setChannel (state, channel) {