From 4135eae793b6efd3b600e349daa471aa1002e397 Mon Sep 17 00:00:00 2001 From: Andreas Shimokawa Date: Mon, 29 Jun 2020 17:54:38 +0200 Subject: [PATCH] Fix timestamps for weather notification, this did not result in any known bug though --- .../gelin/android/weather/notification/ParcelableWeather2.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/ru/gelin/android/weather/notification/ParcelableWeather2.java b/app/src/main/java/ru/gelin/android/weather/notification/ParcelableWeather2.java index bfe633b60..ae69c12f4 100644 --- a/app/src/main/java/ru/gelin/android/weather/notification/ParcelableWeather2.java +++ b/app/src/main/java/ru/gelin/android/weather/notification/ParcelableWeather2.java @@ -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();