fixed Issue 1553:IMAP row content field is not bar decoded, thanks Alan

This commit is contained in:
mdipierro
2013-06-23 08:45:56 -05:00
parent 47890a8454
commit b0d8a0f0c7
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.5.1-stable+timestamp.2013.06.23.00.22.51
Version 2.5.1-stable+timestamp.2013.06.23.08.45.09
+1 -1
View File
@@ -6406,7 +6406,7 @@ class IMAPAdapter(NoSQLAdapter):
if "%s.size" % tablename in colnames:
if part is not None:
size += len(str(part))
item_dict["%s.content" % tablename] = bar_encode(content)
item_dict["%s.content" % tablename] = content
item_dict["%s.attachments" % tablename] = attachments
item_dict["%s.size" % tablename] = size
imapqry_list.append(item_dict)