mirror of
https://github.com/pulb/mailnag.git
synced 2026-01-16 02:32:03 +01:00
fix unicode/byte issue in account dialog
This commit is contained in:
@@ -233,7 +233,7 @@ class AccountDialog:
|
||||
folders = []
|
||||
for row in self._liststore_folders:
|
||||
if row[0]:
|
||||
folders.append(row[1].decode('utf-8'))
|
||||
folders.append(row[1])
|
||||
return folders
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user