1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-01 19:18:28 -04:00

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

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