mirror of
https://github.com/esphome/esp-web-tools.git
synced 2025-07-28 14:16:41 +00:00
Interpretet timeout in seconds, not ms (#140)
This commit is contained in:
parent
4d9f07da9f
commit
3f60b2ed43
@ -705,7 +705,7 @@ class EwtInstallDialog extends LitElement {
|
|||||||
const timeout = !justInstalled
|
const timeout = !justInstalled
|
||||||
? 1000
|
? 1000
|
||||||
: this._manifest.new_install_improv_wait_time !== undefined
|
: this._manifest.new_install_improv_wait_time !== undefined
|
||||||
? this._manifest.new_install_improv_wait_time
|
? this._manifest.new_install_improv_wait_time * 1000
|
||||||
: 10000;
|
: 10000;
|
||||||
this._info = await client.initialize(timeout);
|
this._info = await client.initialize(timeout);
|
||||||
this._client = client;
|
this._client = client;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user