mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
Don't crash when mail body is empty
This commit is contained in:
parent
c3746ce7b0
commit
e66c42890c
@ -362,11 +362,13 @@ def ticket_from_message(message, queue, logger):
|
||||
|
||||
if not body:
|
||||
mail = BeautifulSoup(part.get_payload(), "lxml")
|
||||
if ">" in mail.text:
|
||||
body = mail.find('body')
|
||||
body = body.text
|
||||
body = body.encode('ascii', errors='ignore')
|
||||
else:
|
||||
beautiful_body = mail.find('body')
|
||||
if beautiful_body:
|
||||
try:
|
||||
body = beautiful_body.text
|
||||
except AttributeError:
|
||||
pass
|
||||
if not body:
|
||||
body = mail.text
|
||||
|
||||
if ticket:
|
||||
|
Loading…
Reference in New Issue
Block a user