diff --git a/webadmin/src/views/apps.js b/webadmin/src/views/apps.js index fdc60c24d..683f603d5 100644 --- a/webadmin/src/views/apps.js +++ b/webadmin/src/views/apps.js @@ -498,17 +498,13 @@ angular.module('Application').controller('AppsController', ['$scope', '$location } Client.onReady(function () { - Client.refreshUserInfo(function (error) { - if (error) return console.error(error); - - if ($scope.user.admin) { - fetchUsers(); - fetchGroups(); - getDomains(); - getMailConfig(); - getBackupConfig(); - } - }); + if ($scope.user.admin) { + fetchUsers(); + fetchGroups(); + getDomains(); + getMailConfig(); + getBackupConfig(); + } }); // setup all the dialog focus handling