wrong condition

This commit is contained in:
gbrian 2021-03-29 11:11:26 +00:00
parent 78a1744da4
commit 78d2d706af

View File

@ -81,7 +81,7 @@ export const actions = actionTree(
},
request({ getters }) {
if (!accessor.connected || !getters.hosting) {
if (!accessor.connected || getters.hosting) {
return
}
@ -89,7 +89,7 @@ export const actions = actionTree(
},
release({ getters }) {
if (!accessor.connected || getters.hosting) {
if (!accessor.connected || !getters.hosting) {
return
}