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

Commit eebe1537 authored by Marius Volkhart's avatar Marius Volkhart
Browse files

Lock Screen Weather: units changed to Uppercase

Change-Id: I2e9ac94bba147e073f6d8c466fc864bc1189eca0
parent 304af0cf
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 + "°";
    }