mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-14 10:51:21 +01:00
Merge pull request #808 from ilikerobots/patch-2
Fix for 'NoneType' object has no attribute 'email'
This commit is contained in:
commit
b9933a8c9c
@ -551,7 +551,7 @@ def ticket_from_message(message, queue, logger):
|
|||||||
# copy email to all those CC'd to this particular ticket
|
# copy email to all those CC'd to this particular ticket
|
||||||
for cc in t.ticketcc_set.all():
|
for cc in t.ticketcc_set.all():
|
||||||
# don't duplicate email to assignee
|
# don't duplicate email to assignee
|
||||||
if t.assigned_to.email != cc.email_address:
|
if not t.assigned_to or (t.assigned_to.email != cc.email_address):
|
||||||
send_templated_mail(
|
send_templated_mail(
|
||||||
'updated_cc',
|
'updated_cc',
|
||||||
context,
|
context,
|
||||||
|
Loading…
Reference in New Issue
Block a user