diff --git a/src/views/app.js b/src/views/app.js index 2a1394337..04f726809 100644 --- a/src/views/app.js +++ b/src/views/app.js @@ -911,6 +911,9 @@ angular.module('Application').controller('AppController', ['$scope', '$location' $scope.app = app; + // Immediately move to debug view on error + if (app.error && !($scope.view === 'debug' || $scope.view === 'uninstall')) $scope.setView('debug'); + callback(); }); }