Skip to content

Commit 1d7264c

Browse files
committed
fixed: Unhandled Exceptions
1 parent 196aae2 commit 1d7264c

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed

.DS_Store

-6 KB
Binary file not shown.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## Changelog
2+
- Fixed: Unhandled Exceptions

assets/.DS_Store

-6 KB
Binary file not shown.

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ app.on('activate', function () {
6969
autoUpdater.on('error', (error) => {
7070
console.log(error);
7171
// mainWindow.webContents.send('updateError', error.toString());
72-
dialog.showErrorBox('Error: ', error == null ? "unknown" : (error.stack || error).toString())
72+
// dialog.showErrorBox('Error: ', error == null ? "unknown" : (error.stack || error).toString())
7373
});
7474

7575
autoUpdater.on('update-available', (info) => {

0 commit comments

Comments
 (0)