This commit is contained in:
Robin Davies
2022-02-01 18:51:38 -05:00
parent dddd6a85d5
commit caa2aa1312
26 changed files with 1245 additions and 114 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ class PiPedalSocket {
this.totalRetryDelay += this.retryDelay;
Utility.delay(this.retryDelay).then(() => this.reconnect());
this.retryDelay *= 2;
if (this.retryDelay > 5000) this.retryDelay = 5000;
if (this.retryDelay > 3000) this.retryDelay = 3000;
}
});
}