Skip to content

Commit

Permalink
fixed: Unhandled Exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Chhekur committed Feb 21, 2019
1 parent 196aae2 commit 1d7264c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## Changelog
- Fixed: Unhandled Exceptions
Binary file removed assets/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ app.on('activate', function () {
autoUpdater.on('error', (error) => {
console.log(error);
// mainWindow.webContents.send('updateError', error.toString());
dialog.showErrorBox('Error: ', error == null ? "unknown" : (error.stack || error).toString())
// dialog.showErrorBox('Error: ', error == null ? "unknown" : (error.stack || error).toString())
});

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

0 comments on commit 1d7264c

Please sign in to comment.