1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-20 20:10:15 +02:00

Fix min temp in cached weather data debug popup

This commit is contained in:
José Rebelo 2023-08-22 17:38:33 +01:00
parent 74dc0f70a6
commit 2320043c00

View File

@ -1042,7 +1042,7 @@ public class DebugActivity extends AbstractGBActivity {
info += "Timestamp: " + weatherSpec.timestamp + "\n";
info += "Current Temp: " + weatherSpec.currentTemp + " K\n";
info += "Max Temp: " + weatherSpec.todayMaxTemp + " K\n";
info += "Min Temp: " + weatherSpec.location + "\n";
info += "Min Temp: " + weatherSpec.todayMinTemp + " K\n";
info += "Condition: " + weatherSpec.currentCondition + "\n";
info += "Condition Code: " + weatherSpec.currentConditionCode + "\n";
info += "Humidity: " + weatherSpec.currentHumidity + "\n";