From 85c84be61056cff56a60f5e0e8e4f62c202e9dae Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Wed, 27 Dec 2023 17:13:05 +0100 Subject: [PATCH] fix: fixed battery high level notification ID (#1743) --- Modules/Battery/notifications.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Battery/notifications.swift b/Modules/Battery/notifications.swift index 56174a86..023b11aa 100644 --- a/Modules/Battery/notifications.swift +++ b/Modules/Battery/notifications.swift @@ -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) } }