Skip to content

Commit

Permalink
Interpretet timeout in seconds, not ms (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Dec 7, 2021
1 parent 4d9f07d commit 3f60b2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/install-dialog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ class EwtInstallDialog extends LitElement {
const timeout = !justInstalled
? 1000
: this._manifest.new_install_improv_wait_time !== undefined
? this._manifest.new_install_improv_wait_time
? this._manifest.new_install_improv_wait_time * 1000
: 10000;
this._info = await client.initialize(timeout);
this._client = client;
Expand Down

0 comments on commit 3f60b2e

Please sign in to comment.