From da4ef5675adee962965c7655cca5d86c4ab47751 Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Mon, 19 May 2025 10:05:17 +0000 Subject: [PATCH] fix --- custom_components/tibber_prices/api.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/custom_components/tibber_prices/api.py b/custom_components/tibber_prices/api.py index db76f17..4c79b01 100644 --- a/custom_components/tibber_prices/api.py +++ b/custom_components/tibber_prices/api.py @@ -337,7 +337,10 @@ class TibberPricesApiClient: "query": """ {viewer{homes{id,currentSubscription{priceRating{ thresholdPercentages{low high} - daily{entries{time total energy tax difference level}} + daily{ + currency + entries{time total energy tax difference level} + } }}}}}""" }, query_type=QueryType.DAILY_RATING, @@ -350,7 +353,10 @@ class TibberPricesApiClient: "query": """ {viewer{homes{id,currentSubscription{priceRating{ thresholdPercentages{low high} - hourly{entries{time total energy tax difference level}} + hourly{ + currency + entries{time total energy tax difference level} + } }}}}}""" }, query_type=QueryType.HOURLY_RATING,