Mark it as internal function
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user