Global Sent fix

This commit is contained in:
mailchuck 2016-03-22 16:30:12 +01:00 committed by Peter Surda
parent 0ab0e6757a
commit a63f9054f4
1 changed files with 2 additions and 0 deletions

View File

@ -1019,6 +1019,8 @@ class MyForm(settingsmixin.SMainWindow):
def addMessageListItemSent(self, tableWidget, toAddress, fromAddress, subject, status, ackdata, lastactiontime): def addMessageListItemSent(self, tableWidget, toAddress, fromAddress, subject, status, ackdata, lastactiontime):
acct = accountClass(fromAddress) acct = accountClass(fromAddress)
if acct is None:
acct = BMAccount(fromAddress)
acct.parseMessage(toAddress, fromAddress, subject, "") acct.parseMessage(toAddress, fromAddress, subject, "")
items = [] items = []