Increased the script timeout to 15 seconds

canary
WolverinDEV 2020-08-21 00:08:41 +02:00
parent 8bea16172d
commit cb00b236bb
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ function load_script_url(url: string) : Promise<void> {
const timeout_handle = setTimeout(() => {
cleanup();
reject("timeout");
}, 10 * 1000);
}, 15 * 1000);
script_tag.type = "application/javascript";
script_tag.async = true;
script_tag.defer = true;