summaryrefslogtreecommitdiff
path: root/src/jwebmail/model/read_mails.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/jwebmail/model/read_mails.py')
-rw-r--r--src/jwebmail/model/read_mails.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/jwebmail/model/read_mails.py b/src/jwebmail/model/read_mails.py
index e35299f..769589f 100644
--- a/src/jwebmail/model/read_mails.py
+++ b/src/jwebmail/model/read_mails.py
@@ -69,7 +69,6 @@ class QMailAuthuser:
"unread_mails": r.unread_count,
}
- #
def show(self, folder, msgid):
req = pb2.ShowReq(folder=folder, mid=msgid)
resp = self.build_and_run("read", req.SerializeToString())
@@ -136,8 +135,8 @@ class QMailAuthuser:
"reply_to": [cls._address(x) for x in h.reply_to if x],
"to": [cls._address(x) for x in h.send_to if x],
"subject": h.subject,
- "comments": h.comments,
- "keywords": h.keywords,
+ "comments": list(h.comments),
+ "keywords": list(h.keywords),
"mime": cls._mime_header(h.mime),
}