-
+
+
+
+
+ App not found
+
diff --git a/src/js/filemanager.js b/src/js/filemanager.js
index 79e34492a..07ac1838d 100644
--- a/src/js/filemanager.js
+++ b/src/js/filemanager.js
@@ -268,7 +268,10 @@ app.controller('FileManagerController', ['$scope', 'Client', function ($scope, C
if (error) return Client.initError(error, init);
Client.getApp($scope.appId, function (error, result) {
- if (error) return Client.initError(error, init);
+ if (error) {
+ $scope.initialized = true;
+ return;
+ }
$scope.app = result;