Skip to content

Commit abaf79f

Browse files
balloobclaude
andauthored
Increase SSID scan retry delay to 2 seconds (#670)
When improv post-install gets 0 networks, the retry mechanism now waits 2 seconds between retries instead of 1 second, giving devices more time to complete their network scan. Co-authored-by: Claude Opus 4.5 <[email protected]>
1 parent 9212624 commit abaf79f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ export class EwtInstallDialog extends LitElement {
791791
// We will retry a few times if we don't get any results
792792
if (ssids.length === 0 && tries < 3) {
793793
console.log("SCHEDULE RETRY", tries);
794-
setTimeout(() => this._updateSsids(tries + 1), 1000);
794+
setTimeout(() => this._updateSsids(tries + 1), 2000);
795795
return;
796796
}
797797

0 commit comments

Comments
 (0)