dashboard: remove some debug console.logs()

This commit is contained in:
Johannes Zellner
2023-08-08 15:52:09 +02:00
parent 10646e9e04
commit 7d9e697d85
2 changed files with 1 additions and 3 deletions

View File

@@ -3376,7 +3376,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
};
Client.prototype._onAppstoreApps = function (callback) {
if (!this._fetchingAppstoreApps) {console.log('not fetching'); callback(); }
if (!this._fetchingAppstoreApps) { callback(); }
else this._fetchingAppstoreAppsListener.push(callback);
};