fix unknown method in bridge

This commit is contained in:
hippoz 2022-10-30 22:28:09 +02:00
parent 3ea2b81b01
commit d63933f06c
Signed by: hippoz
GPG key ID: 7C52899193467641

View file

@ -139,7 +139,7 @@ export default class {
this.reconnectDelay *= 2; this.reconnectDelay *= 2;
} }
this.reconnectTimeout = setTimeout(() => { this.reconnectTimeout = setTimeout(() => {
this.init(token); this.connect();
}, this.reconnectDelay); }, this.reconnectDelay);
} }