ignore did-fail-load error code -3

bug with in-app-menu
This commit is contained in:
Araxeus
2021-05-04 02:04:17 +03:00
parent d5b9e3c960
commit fb81e1bdd5
2 changed files with 6 additions and 5 deletions

View File

@ -7,7 +7,7 @@ function logToString(log) {
}
module.exports = () => {
ipcRenderer.on("log", (event, log) => {
ipcRenderer.on("log", (_event, log) => {
console.log(logToString(log));
});
};