diff --git a/src/index.html b/src/index.html
index 25eedffe4..77c999104 100644
--- a/src/index.html
+++ b/src/index.html
@@ -108,7 +108,7 @@
- {{ status.cloudronName || 'Cloudron' }}
+ {{ config.cloudronName || 'Cloudron' }}
@@ -157,8 +157,8 @@
diff --git a/src/js/main.js b/src/js/main.js
index f01094911..b4f7c6256 100644
--- a/src/js/main.js
+++ b/src/js/main.js
@@ -8,7 +8,6 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
$scope.user = Client.getUserInfo();
$scope.installedApps = Client.getInstalledApps();
$scope.config = {};
- $scope.status = {};
$scope.client = Client;
$scope.subscription = {};
$scope.notifications = [];
@@ -83,8 +82,6 @@ angular.module('Application').controller('MainController', ['$scope', '$route',
return;
}
- $scope.status = status;
-
// check version and force reload if needed
if (!localStorage.version) {
localStorage.version = status.version;