diff --git a/src/views/app.js b/src/views/app.js index 97958f172..f3b9cae8b 100644 --- a/src/views/app.js +++ b/src/views/app.js @@ -164,6 +164,8 @@ angular.module('Application').controller('AppController', ['$scope', '$location' }; $scope.isProxyApp = function (app) { + if (!app || !app.manifest) return false; + return app.manifest.id === 'io.cloudron.builtin.appproxy'; };