We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68d987f commit 1d214aeCopy full SHA for 1d214ae
homeassistant/components/met/coordinator.py
@@ -83,7 +83,9 @@ async def fetch_data(self) -> Self:
83
self.current_weather_data = self._weather_data.get_current_weather()
84
time_zone = dt_util.get_default_time_zone()
85
self.daily_forecast = self._weather_data.get_forecast(time_zone, False, 0)
86
- self.hourly_forecast = self._weather_data.get_forecast(time_zone, True)
+ self.hourly_forecast = self._weather_data.get_forecast(
87
+ time_zone, True, range_stop=49
88
+ )
89
return self
90
91
0 commit comments