mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
e8efa4d263
@ -362,6 +362,12 @@ def create_object_from_email_message(message, ticket_id, payload, files, logger)
|
||||
message_id = message.get('Message-Id')
|
||||
in_reply_to = message.get('In-Reply-To')
|
||||
|
||||
if message_id:
|
||||
message_id = message_id.strip()
|
||||
|
||||
if in_reply_to:
|
||||
in_reply_to = in_reply_to.strip()
|
||||
|
||||
if in_reply_to is not None:
|
||||
try:
|
||||
queryset = FollowUp.objects.filter(message_id=in_reply_to).order_by('-date')
|
||||
|
Loading…
Reference in New Issue
Block a user