fix timestamp type mismatch bug

This commit is contained in:
Kashiko Koibumi 2024-06-24 11:04:34 +09:00
parent 229644cd1d
commit bdbe5cca61
No known key found for this signature in database
GPG Key ID: 8F06E069E37C40C4

View File

@ -1229,8 +1229,8 @@ class MyForm(settingsmixin.SMainWindow):
r.append(row[1].decode("utf-8", "replace")) # fromaddress r.append(row[1].decode("utf-8", "replace")) # fromaddress
r.append(row[2].decode("utf-8", "replace")) # subject r.append(row[2].decode("utf-8", "replace")) # subject
r.append(row[3].decode("utf-8", "replace")) # status r.append(row[3].decode("utf-8", "replace")) # status
r.append(row[3]) # ackdata r.append(row[4]) # ackdata
r.append(row[4]) # lastactiontime r.append(row[5]) # lastactiontime
self.addMessageListItemSent(tableWidget, *r) self.addMessageListItemSent(tableWidget, *r)
tableWidget.horizontalHeader().setSortIndicator( tableWidget.horizontalHeader().setSortIndicator(