@aladdin i’m not sure, lookingat the code I find one place to try to fix…

in the modulename.,js , starting at line 386

// get info back from node_helper who just made an api request, sam } else if (notification === "LISTINGS_RECEIVED" && !self.loaded) { if (payload.isSuccessful && payload.data.status.error_code == 0) { self.log(self.translate("LISTINGS_SUCCESS", { "numberOfAttempts": payload.original.attemptNum })); self.listings = payload.data.data; self.filterCurrenciesAndSetupDataSet(); self.loaded = true; // update the UI , sam self.updateDom(0); // schedule next update, sam self.scheduleUpdate(); // oops.. and go get the data AGAIN now??? , instead of wait on scheduled update??? sam self.getAllCurrencyDetails(1); // comment out this line, sam self.cacheLogos(); // and this line (using // , sam // oops , sam self.log(("self.config.currencies: " + JSON.stringify(self.config.currencies)), "dev");