about summary refs log tree commit diff stats
path: root/src/ui/console.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-03-19 22:57:51 +0000
committerJames Booth <boothj5@gmail.com>2015-03-19 22:57:51 +0000
commitf1f047889eed360a0c91be4fcabd24199089c02a (patch)
treed1662f2e3f3c086eccf1f33611f32442d598f0a6 /src/ui/console.c
parent8e80a8ccf7578de71c02149e2bb99fd36b711915 (diff)
downloadprofani-tty-f1f047889eed360a0c91be4fcabd24199089c02a.tar.gz
Added individual options to send and request delivery receipts
Diffstat (limited to 'src/ui/console.c')
-rw-r--r--src/ui/console.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/ui/console.c b/src/ui/console.c
index cd74f455..328f59aa 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -1199,10 +1199,16 @@ cons_carbons_setting(void)
 void
 cons_receipts_setting(void)
 {
-    if (prefs_get_boolean(PREF_RECEIPTS))
-        cons_show("Message receipts (/receipts)  : ON");
+    if (prefs_get_boolean(PREF_RECEIPTS_REQUEST))
+        cons_show("Request receipts (/receipts)  : ON");
     else
-        cons_show("Message receipts (/receipts)  : OFF");
+        cons_show("Request receipts (/receipts)  : OFF");
+
+    if (prefs_get_boolean(PREF_RECEIPTS_SEND))
+        cons_show("Send receipts (/receipts)     : ON");
+    else
+        cons_show("Send receipts (/receipts)     : OFF");
+
 }
 
 void