Fix error handling for version check

This commit is contained in:
Nick Denry 2020-08-07 20:37:46 +03:00
parent b0e42d98ac
commit 32fa49f1e9
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ angApp.controller('DefaultController', function($scope, $timeout, $http, AppInfo
else {
$scope.checkingForUpdate = 'latest'
}
}, (error) => {
}).catch((error) => {
$scope.checkingForUpdate = 'checkErr'
})
}