1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-28 07:50:11 +02:00

Fix timestamps for weather notification, this did not result in any known bug though

This commit is contained in:
Andreas Shimokawa 2020-06-29 17:54:38 +02:00
parent 3c99adbf13
commit 4135eae793

View File

@ -75,7 +75,7 @@ public class ParcelableWeather2 implements Parcelable {
JSONArray list = new JSONArray();
JSONObject city = new JSONObject();
while (--conditions > 0) {
timeOffset += 86400000; //manually determined
timeOffset += 86400; //manually determined
JSONObject item = new JSONObject();
JSONObject condition = new JSONObject();
JSONObject main = new JSONObject();