-
Notifications
You must be signed in to change notification settings - Fork 247
Closed
Description
There is an error in the protocol check in the code on line 131 here. A colon : should be added.
itch/src/main/reactors/launch/perform-html-launch.ts
Lines 129 to 137 in 0c80bf9
| win.webContents.setWindowOpenHandler(({ url }) => { | |
| let u = new URL(url); | |
| if (u.protocol == "http" || u.protocol == "https") { | |
| shell.openExternal(url); | |
| } else { | |
| logger.warn(`Prevented opening external URL: ${url}`); | |
| } | |
| return { action: "deny" }; | |
| }); |
u.protocol == "http:" || u.protocol == "https:"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels