mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Fix min temp in cached weather data debug popup
This commit is contained in:
+1
-1
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user