diff options
Diffstat (limited to 'src/modules/notifpopups.tsx')
| -rw-r--r-- | src/modules/notifpopups.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/notifpopups.tsx b/src/modules/notifpopups.tsx index 0332fa7..d3cbb90 100644 --- a/src/modules/notifpopups.tsx +++ b/src/modules/notifpopups.tsx @@ -19,7 +19,7 @@ export default () => ( let notifsOpen = false; self.hook(notifd, "notified", (self, id) => { - if (notifsOpen) return; + if (notifsOpen || notifd.dontDisturb) return; const notification = notifd.get_notification(id); |