fix: fixed battery high level notification ID (#1743)

This commit is contained in:
Serhiy Mytrovtsiy
2023-12-27 17:13:05 +01:00
parent c3ee6c6b29
commit 85c84be610

View File

@@ -75,7 +75,7 @@ class Notifications: NotificationsWrapper {
if value.timeToCharge > 0 {
subtitle += " (\(Double(value.timeToCharge*60).printSecondsToHoursMinutesSeconds()))"
}
self.checkDouble(id: self.lowID, value: value.level, threshold: threshold, title: title, subtitle: subtitle)
self.checkDouble(id: self.highID, value: value.level, threshold: threshold, title: title, subtitle: subtitle)
}
}