Fix call to nonexistent function in URL redirection

Gotta love runtime errors
This commit is contained in:
CakeLancelot 2023-04-23 15:37:44 -05:00 committed by GitHub
parent 7b3de1fe52
commit 48e2052748
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ function showMainWindow() {
require("shell").openExternal("https://discord.gg/DYavckB");
break;
default:
mainWindow.webContents.loadURL(url);
mainWindow.loadURL(url);
}
});
}