summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-03-25 10:05:11 +0100
committerJoas Schilling <coding@schilljs.com>2024-03-25 10:05:11 +0100
commitf12f0540dcdb050d12d4c9c02a610ce5d5fb492f (patch)
tree2d18a8acdf2c28c17f3320df87f359152ec9538d /lib
parentd6683b4fc9377768921d25934aa9a340d710f0e3 (diff)
fix(notification): Fix notifications in note-to-self
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Notification/Notifier.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index 88e93aa64..683212f5b 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -897,6 +897,7 @@ class Notifier implements INotifier {
case Room::TYPE_ONE_TO_ONE_FORMER:
return 'one2one';
case Room::TYPE_GROUP:
+ case Room::TYPE_NOTE_TO_SELF:
return 'group';
case Room::TYPE_PUBLIC:
return 'public';