Mark it as internal function

This commit is contained in:
Girish Ramakrishnan
2018-06-26 08:34:05 -07:00
parent 6034121695
commit 0c98e6f4ca

View File

@@ -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) {