From 25b1ba653c345a55e82b333e64fa111c143bc49a Mon Sep 17 00:00:00 2001 From: hippoz <10706925-hippoz@users.noreply.gitlab.com> Date: Wed, 27 Apr 2022 17:08:19 +0300 Subject: [PATCH] frontend: fix gateway reconnect --- frontend/src/gateway.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/gateway.js b/frontend/src/gateway.js index 5112424..bf845dc 100644 --- a/frontend/src/gateway.js +++ b/frontend/src/gateway.js @@ -114,7 +114,7 @@ export default { this.reconnectDelay *= 2; } this.reconnectTimeout = setTimeout(() => { - this.init(); + this.init(token); }, this.reconnectDelay); }