Allow steam:// protocol links

This commit is contained in:
tobspr 2022-06-15 12:28:14 +02:00
parent f9fa3cd6a7
commit 918dd5dc25
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
});