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 16e85e5 commit bc868d1Copy full SHA for bc868d1
1 file changed
services/Weather.qml
@@ -133,8 +133,8 @@ Singleton {
133
date: json.daily.time[i].replace(/-/g, "/"),
134
maxTempC: json.daily.temperature_2m_max[i],
135
minTempC: json.daily.temperature_2m_min[i],
136
- maxTempF: Math.round(json.daily.temperature_2m_max[i] * 9/5 + 32),
137
- minTempF: Math.round(json.daily.temperature_2m_min[i] * 9/5 + 32),
+ maxTempF: Math.round(json.daily.temperature_2m_max[i] * 9 / 5 + 32),
+ minTempF: Math.round(json.daily.temperature_2m_min[i] * 9 / 5 + 32),
138
weatherCode: json.daily.weather_code[i],
139
icon: Icons.getWeatherIcon(json.daily.weather_code[i])
140
});
0 commit comments