Skip to content

Commit

Permalink
fix timestamp type mismatch bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kashikoibumi committed Jun 24, 2024
1 parent 229644c commit bdbe5cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bitmessageqt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1229,8 +1229,8 @@ def loadSent(self, tableWidget, account, where="", what=""):
r.append(row[1].decode("utf-8", "replace")) # fromaddress
r.append(row[2].decode("utf-8", "replace")) # subject
r.append(row[3].decode("utf-8", "replace")) # status
r.append(row[3]) # ackdata
r.append(row[4]) # lastactiontime
r.append(row[4]) # ackdata
r.append(row[5]) # lastactiontime
self.addMessageListItemSent(tableWidget, *r)

tableWidget.horizontalHeader().setSortIndicator(
Expand Down

0 comments on commit bdbe5cc

Please sign in to comment.