This commit is contained in:
Girish Ramakrishnan
2019-10-11 14:55:19 -07:00
parent 0e386d33b0
commit 36028632ac
3 changed files with 3 additions and 7 deletions

View File

@@ -1601,8 +1601,6 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
Client.prototype.refreshAppCache = function (id, callback) {
var that = this;
callback = typeof callback === 'function' ? callback : function () {};
this.getApp(id, function (error, app) {
if (error) return callback(error);
@@ -1626,8 +1624,6 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
Client.prototype.refreshInstalledApps = function (callback) {
var that = this;
callback = typeof callback === 'function' ? callback : function () {};
this.getApps(function (error, apps) {
if (error) return callback(error);