about summary refs log tree commit diff stats
path: root/src/ui/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/console.c')
-rw-r--r--src/ui/console.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index ea106ec8..16a12e35 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -1163,10 +1163,8 @@ _cons_notify_setting(void)
     else
         cons_show("Messages (/notify message)          : OFF");
 
-    if (prefs_get_boolean(PREF_NOTIFY_ROOM))
-        cons_show("Messages (/notify room)             : ON");
-    else
-        cons_show("Messages (/notify room)             : OFF");
+    char *room_setting = prefs_get_string(PREF_NOTIFY_ROOM);
+    cons_show    ("Chat room messages (/notify room)   : %s", room_setting);
 
     if (prefs_get_boolean(PREF_NOTIFY_TYPING))
         cons_show("Composing (/notify typing)          : ON");