Fixed price save

This commit is contained in:
Gunnar Skjold
2024-02-15 08:40:08 +01:00
parent 16d1ee9761
commit ab2086f909
2 changed files with 3 additions and 1 deletions

View File

@@ -321,7 +321,7 @@ void setup() {
hw.ledBlink(LED_BLUE, 1);
PriceServiceConfig price;
if(config.getPriceServiceConfig(price) && price.enabled && strlen(price.area) > 0) {
if(config.getPriceServiceConfig(price)) {
ps = new PriceService(&Debug);
ps->setup(price);
ws.setPriceService(ps);