[🐛] Fixed battery indicator

This commit is contained in:
ThinLiquid 2023-12-06 19:05:35 +00:00 committed by GitHub
parent 4801c46f73
commit 4321e42d8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ class StatusBar {
iconHTML = 'battery_charging_50' iconHTML = 'battery_charging_50'
} else if (battery.level >= 0.3) { } else if (battery.level >= 0.3) {
iconHTML = 'battery_charging_30' iconHTML = 'battery_charging_30'
} else if (battery.level >= 0.2) { } else if (battery.level >= 0) {
iconHTML = 'battery_charging_20' iconHTML = 'battery_charging_20'
} }
} else { } else {