Skip to content

Commit

Permalink
Fixed the default connect
Browse files Browse the repository at this point in the history
  • Loading branch information
WolverinDEV committed Feb 26, 2021
1 parent 2cf94ea commit d8ecb01
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion shared/js/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit d8ecb01

Please sign in to comment.