Fixed the default connect

master
WolverinDEV 2021-02-26 19:55:25 +01:00
parent 2cf94eaf4b
commit d8ecb013c2
1 changed files with 3 additions and 1 deletions

View File

@ -489,7 +489,9 @@ const task_connect_handler: loader.Task = {
preventWelcomeUI = true;
loader.register_task(loader.Stage.LOADED, {
priority: 0,
function: async () => handleConnectRequest(address, undefined, AppParameters.Instance),
function: async () => {
handleConnectRequest(address, undefined, AppParameters.Instance).then(undefined);
},
name: tr("default url connect")
});
loader.register_task(loader.Stage.LOADED, task_teaweb_starter);