From ff8a88422cbc49af7f5d49309c03d5a08c28041e Mon Sep 17 00:00:00 2001 From: Jonathan Warren Date: Tue, 1 Oct 2013 22:44:00 -0400 Subject: [PATCH] Fix DevTalk discussion issue: sent message has wrong status (doesn't / does expect ack) --- src/class_singleWorker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class_singleWorker.py b/src/class_singleWorker.py index 1e712c8e..b10e1919 100644 --- a/src/class_singleWorker.py +++ b/src/class_singleWorker.py @@ -819,7 +819,7 @@ class singleWorker(threading.Thread): # Update the status of the message in the 'sent' table to have a # 'msgsent' status or 'msgsentnoackexpected' status. - if not shared.config.has_section(toaddress): + if shared.config.has_section(toaddress): newStatus = 'msgsentnoackexpected' else: newStatus = 'msgsent'