Merge pull request #214 from resin-io/fix/error-dialog-analytics

Throw error after displaying it with dialog
This commit is contained in:
Juan Cruz Viotti 2016-03-21 10:42:08 -04:00
commit 84b5117a93

View File

@ -81,4 +81,5 @@ exports.selectImage = function() {
*/
exports.showError = function(error) {
electron.dialog.showErrorBox(error.message, error.stack || '');
throw error;
};