Fix wrong assignment of default subject

This commit is contained in:
Patrick Ulbrich
2019-10-28 19:14:45 +01:00
parent 6a9e0d7fb3
commit 965f91ad80

View File

@@ -118,7 +118,7 @@ class MailCollector:
content = self._get_header_field(msg_dict, 'Subject')
subject = self._convert(content)
except:
content = _('No subject')
subject = _('No subject')
# Get date
try: