diff --git a/lib/gui/modules/error.js b/lib/gui/modules/error.js index c6e08835..a26456c0 100644 --- a/lib/gui/modules/error.js +++ b/lib/gui/modules/error.js @@ -41,14 +41,6 @@ error.service('ErrorService', function(AnalyticsService, OSDialogService) { * ErrorService.reportException(new Error('Something happened')); */ this.reportException = (exception) => { - - // This particular error is handled by the alert ribbon - // on the main application page. - if (exception.code === 'ENOSPC') { - AnalyticsService.logEvent('Drive ran out of space'); - return; - } - OSDialogService.showError(exception, exception.description); AnalyticsService.logException(exception); };