More fixes for UTC

This commit is contained in:
Paul Warren 2022-01-31 17:03:13 +11:00
parent 11fc9815a1
commit a00ad4189f
1 changed files with 2 additions and 2 deletions

View File

@ -69,8 +69,8 @@ weather = {}
if wdays_dict[0]['temp_min'] is None:
night = 1
weather['today'] = wdays_dict[0]
weather['tomorrow'] = wdays_dict[2]
weather['day_after'] = wdays_dict[3]
weather['tomorrow'] = wdays_dict[1]
weather['day_after'] = wdays_dict[2]
else:
night = 0
weather['today'] = wdays_dict[0]