aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/settingsWS
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/settingsWS')
-rwxr-xr-xsrc/features/settingsWS/store.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/features/settingsWS/store.js b/src/features/settingsWS/store.js
index 3cc74d8ef..8e1d455f1 100755
--- a/src/features/settingsWS/store.js
+++ b/src/features/settingsWS/store.js
@@ -22,8 +22,9 @@ export class SettingsWSStore extends Store {
22 } 22 }
23 23
24 setup() { 24 setup() {
25 this.connect(); 25 reaction(() => this.stores.user.data.id, this.connect.bind(this), {
26 26 fireImmediately: true,
27 });
27 reaction(() => !this.connected, this.reconnect.bind(this)); 28 reaction(() => !this.connected, this.reconnect.bind(this));
28 } 29 }
29 30