mirror of
https://github.com/OpenFusionProject/Client.git
synced 2025-12-18 05:30:58 +00:00
Fix call to nonexistent function in URL redirection
Gotta love runtime errors
This commit is contained in:
2
index.js
2
index.js
@@ -205,7 +205,7 @@ function showMainWindow() {
|
|||||||
require("shell").openExternal("https://discord.gg/DYavckB");
|
require("shell").openExternal("https://discord.gg/DYavckB");
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
mainWindow.webContents.loadURL(url);
|
mainWindow.loadURL(url);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user