1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-06 05:28:29 -04:00

fix(BatteryService): fix typo in notification check (#2944)

(cherry picked from commit 8594a414ec)
This commit is contained in:
euletheia
2026-07-27 15:33:04 +00:00
committed by purian23
parent cfdacd3ea3
commit bd4d35d215
+1 -1
View File
@@ -244,7 +244,7 @@ Singleton {
const summary = w.notification.summary;
if ((dismissLow && summary === lowSummary) || (dismissCritical && summary === lowSummary)) {
if ((dismissLow && summary === lowSummary) || (dismissCritical && summary === criticalSummary)) {
NotificationService.dismissNotification(w);
}
}