From 78d2d706afc7cb189eda5d8198597d82d3c886da Mon Sep 17 00:00:00 2001 From: gbrian Date: Mon, 29 Mar 2021 11:11:26 +0000 Subject: [PATCH] wrong condition --- client/src/store/remote.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/store/remote.ts b/client/src/store/remote.ts index 70b6f3d7..0089eb77 100644 --- a/client/src/store/remote.ts +++ b/client/src/store/remote.ts @@ -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 }