1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-03 19:41:46 +02:00

WeatherSpec: Fix typo in getLocation

This commit is contained in:
José Rebelo 2023-08-29 00:14:35 +01:00
parent 9c5cba68dd
commit 2051ce2055

View File

@ -105,7 +105,7 @@ public class WeatherSpec implements Parcelable, Serializable {
} }
final Location location = new Location("weatherSpec"); final Location location = new Location("weatherSpec");
location.setLatitude(latitude); location.setLatitude(latitude);
location.setLatitude(longitude); location.setLongitude(longitude);
return location; return location;
} }