From 2ec5a2acffd991d65a9bcd597017dc24759bce3d Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 23 Apr 2019 21:16:11 -0700 Subject: [PATCH] List unstable apps by default --- src/js/appstore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/appstore.js b/src/js/appstore.js index 7dd07b0e5..bdca66512 100644 --- a/src/js/appstore.js +++ b/src/js/appstore.js @@ -24,7 +24,7 @@ angular.module('Application').service('AppStore', ['$http', '$base64', 'Client', var that = this; - $http.get(Client.getConfig().apiServerOrigin + '/api/v1/apps', { params: { boxVersion: Client.getConfig().version } }).success(function (data, status) { + $http.get(Client.getConfig().apiServerOrigin + '/api/v1/apps', { params: { boxVersion: Client.getConfig().version, unstable: true } }).success(function (data, status) { if (status !== 200) return callback(new AppStoreError(status, data)); angular.copy(data.apps, that._appsCache);