Browse Source

Increases timeout since some requests can be slow

main
Eric Amodio 1 year ago
parent
commit
c9a9929fef
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/webviews/webviewController.ts

+ 1
- 1
src/webviews/webviewController.ts View File

@ -580,7 +580,7 @@ export class WebviewController<
debugger;
setLogScopeExit(scope, undefined, 'TIMEDOUT');
resolve(false);
}, 5000);
}, 30000);
}),
]);

Loading…
Cancel
Save