From a581c9309dbc1199dba1c53c3a965e5d754bd021 Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Mon, 13 Apr 2026 19:13:00 +0200 Subject: [PATCH] Fix: Update external links for website and wiki in IPC handlers --- app/ipcHandlers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ipcHandlers.js b/app/ipcHandlers.js index b80c20c..cd537f2 100644 --- a/app/ipcHandlers.js +++ b/app/ipcHandlers.js @@ -73,10 +73,10 @@ function registerIpcHandlers(getMainWindow) { ); ipcMain.on("open-logs", () => logDir && shell.openPath(logDir)); ipcMain.on("open-website", () => - shell.openExternal("https://masteracnolo.github.io/FreedomLoader/index.html") + shell.openExternal("https://masteracnolo.github.io/FreedomLoader/") ); ipcMain.on("open-wiki", () => - shell.openExternal("https://masteracnolo.github.io/FreedomLoader/pages/wiki.html") + shell.openExternal("https://masteracnolo.github.io/FreedomLoader/wiki") ); ipcMain.on("open-workshop", () => shell.openExternal("https://masteracnolo.github.io/Freedom-Loader-Workshop")