1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00
This commit is contained in:
Anton Kesy
2026-01-08 20:10:24 +01:00
committed by GitHub
parent 033e62418a
commit f5f21e738a
7 changed files with 11 additions and 11 deletions

View File

@@ -341,11 +341,11 @@ Singleton {
};
}
function formatTemp(celcius, includeUnits = true, unitsShort = true) {
if (celcius == null) {
function formatTemp(celsius, includeUnits = true, unitsShort = true) {
if (celsius == null) {
return null;
}
const value = SettingsData.useFahrenheit ? Math.round(celcius * (9 / 5) + 32) : celcius;
const value = SettingsData.useFahrenheit ? Math.round(celsius * (9 / 5) + 32) : celsius;
const unit = unitsShort ? "°" : (SettingsData.useFahrenheit ? "°F" : "°C");
return includeUnits ? value + unit : value;
}