Procházet zdrojové kódy

Fix cancel previous reconnect timeout for iOS when reconnecting

Lennart Grahl před 6 roky
rodič
revize
679aabd71e
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      src/controllers/status.ts

+ 2 - 1
src/controllers/status.ts

@@ -305,7 +305,8 @@ export class StatusController {
             };
         })();
 
-        this.$timeout(() => {
+        this.$timeout.cancel(this.reconnectTimeout);
+        this.reconnectTimeout = this.$timeout(() => {
             if (push.send) {
                 this.$log.debug(`Starting new connection with push, reason: ${push.reason}`);
             } else {