mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
Allow steam:// protocol links
This commit is contained in:
parent
f9fa3cd6a7
commit
918dd5dc25
@ -155,7 +155,7 @@ function createWindow() {
|
||||
win.webContents.on("new-window", (event, pth) => {
|
||||
event.preventDefault();
|
||||
|
||||
if (pth.startsWith("https://")) {
|
||||
if (pth.startsWith("https://") || pth.startsWith("steam://")) {
|
||||
shell.openExternal(pth);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user