Skip to content

Commit 3f3f170

Browse files
committed
#1929 fix: dismiss all notifications stops working after a while.
1 parent 8dd6727 commit 3f3f170

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.3.1](https://github.com/sds100/KeyMapper/releases/tag/v4.3.1)
2+
3+
## Fixed
4+
5+
- #1929 Dismiss all notifications stops working after a while.
6+
17
## [4.3.0](https://github.com/sds100/KeyMapper/releases/tag/v4.3.0)
28

39
#### 13 July 2026

system/src/main/java/io/github/sds100/keymapper/system/notifications/NotificationReceiverAdapterImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class NotificationReceiverAdapterImpl @Inject constructor(
6363
}
6464

6565
override suspend fun send(event: NotificationServiceEvent): KMResult<*> {
66-
if (isEnabled.value) {
66+
if (!isEnabled.value) {
6767
return SystemError.PermissionDenied(Permission.NOTIFICATION_LISTENER)
6868
}
6969

0 commit comments

Comments
 (0)