From 0c98e6f4ca11a75fe02dc4e77b5fee62be260b63 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 26 Jun 2018 08:34:05 -0700 Subject: [PATCH] Mark it as internal function --- src/js/client.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/client.js b/src/js/client.js index 3fd113768..7404134a8 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -1064,7 +1064,7 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N }); }; - Client.prototype.appPostProcess = function (app) { + Client.prototype._appPostProcess = function (app) { // calculate the icon paths var icons = this.getAppIconUrls(app); app.iconUrl = icons.cloudron; @@ -1113,7 +1113,7 @@ angular.module('Application').service('Client', ['$http', '$interval', 'md5', 'N var tmp = {}; angular.copy(app, tmp); - that.appPostProcess(tmp); + that._appPostProcess(tmp); // only replace if the app is already known if (found !== false) {