1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-24 15:43:46 +02:00

TinyWeather: Patch incoming current weather with current timestamp

This commit is contained in:
Andreas Shimokawa 2020-08-20 23:07:24 +02:00
parent f05ddd2d24
commit ebc70b3fd5

View File

@ -36,6 +36,7 @@ public class TinyWeatherForecastGermanyReceiver extends BroadcastReceiver {
WeatherSpec weatherSpec = bundle.getParcelable("WeatherSpec"); WeatherSpec weatherSpec = bundle.getParcelable("WeatherSpec");
if (weatherSpec != null) { if (weatherSpec != null) {
Weather.getInstance().setWeatherSpec(weatherSpec); Weather.getInstance().setWeatherSpec(weatherSpec);
weatherSpec.timestamp = (int) (System.currentTimeMillis() / 1000);
GBApplication.deviceService().onSendWeather(weatherSpec); GBApplication.deviceService().onSendWeather(weatherSpec);
} }
} }