Merge pull request #808 from ilikerobots/patch-2

Fix for 'NoneType' object has no attribute 'email'
This commit is contained in:
Garret Wassermann 2020-04-15 05:10:41 -04:00 committed by GitHub
commit b9933a8c9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -551,7 +551,7 @@ def ticket_from_message(message, queue, logger):
# copy email to all those CC'd to this particular ticket
for cc in t.ticketcc_set.all():
# 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(
'updated_cc',
context,