Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 80e5d65e authored by Steve Kondik's avatar Steve Kondik Committed by Gerrit Code Review
Browse files

Merge "Lock Screen Weather: units changed to Uppercase" into ics

parents 6077d33a eebe1537
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ public class WeatherInfo {
        this.last_sync = last_sync;
        // Only the current temperature gets the temp_unit added.
        this.temp_unit = temp_unit;
        this.temp = temp + "°" + temp_unit.toLowerCase();
        this.temp = temp + "°" + temp_unit;
        this.low = low + "°";
        this.high = high + "°";
    }