about summary refs log tree commit diff stats
path: root/src/ui/console.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-04-28 18:32:26 +0200
committerGitHub <noreply@github.com>2022-04-28 18:32:26 +0200
commit066df7f741848a2c594a5cbb05cef5af9075d5a1 (patch)
treed2bdb4260285e874ac338f8271794a07b49712b3 /src/ui/console.c
parent69663b83c8dd5b494e0dc6554507ab53ef0c18b9 (diff)
parent8044c82614ad63b60cc0805b0335150eaccb50aa (diff)
downloadprofani-tty-066df7f741848a2c594a5cbb05cef5af9075d5a1.tar.gz
Merge pull request #1697 from cockroach/feature/offline-muc-notifications
Add support for offline MUC notifications
Diffstat (limited to 'src/ui/console.c')
-rw-r--r--src/ui/console.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index 170def7c..08ccba17 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -1717,6 +1717,11 @@ cons_notify_setting(void)
     else
         cons_show("Room mention (/notify room)         : OFF");
 
+    if (prefs_get_boolean(PREF_NOTIFY_ROOM_OFFLINE))
+        cons_show("Room offline messages (/notify room): ON");
+    else
+        cons_show("Room offline messages (/notify room): OFF");
+
     if (prefs_get_boolean(PREF_NOTIFY_MENTION_CASE_SENSITIVE))
         cons_show("Room mention case (/notify room)    : Case sensitive");
     else