Merge pull request #521 from Atheros1/master

Fix DevTalk discussion issue: sent message has wrong status (doesn't / d...
This commit is contained in:
Jonathan Warren 2013-10-01 19:47:54 -07:00
commit 691ee5d3a7
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'