Fix DevTalk discussion issue: sent message has wrong status (doesn't / does expect ack)

This commit is contained in:
Jonathan Warren 2013-10-01 22:44:00 -04:00
parent 043fba8d81
commit ff8a88422c
1 changed files with 1 additions and 1 deletions

View File

@ -819,7 +819,7 @@ class singleWorker(threading.Thread):
# Update the status of the message in the 'sent' table to have a # Update the status of the message in the 'sent' table to have a
# 'msgsent' status or 'msgsentnoackexpected' status. # 'msgsent' status or 'msgsentnoackexpected' status.
if not shared.config.has_section(toaddress): if shared.config.has_section(toaddress):
newStatus = 'msgsentnoackexpected' newStatus = 'msgsentnoackexpected'
else: else:
newStatus = 'msgsent' newStatus = 'msgsent'