Increase ZwaveJS add device timeout to 5 mins (#22809)

This commit is contained in:
Petar Petrov 2024-11-13 17:13:29 +02:00 committed by GitHub
parent 311f221387
commit 42b1f938d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -851,7 +851,7 @@ class DialogZWaveJSAddNode extends LitElement {
this._addNodeTimeoutHandle = window.setTimeout(() => {
this._unsubscribe();
this._status = "timed_out";
}, 90000);
}, 300000);
}
private _onBeforeUnload = (event: BeforeUnloadEvent) => {