mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-09 00:04:50 +02:00
Fixe for Email Issue while pulling CC and ValueError for public homepage
This commit is contained in:
@ -412,7 +412,7 @@ def ticket_from_message(message, queue, logger):
|
||||
for ccemail in new_cc:
|
||||
tcc = TicketCC.objects.create(
|
||||
ticket=t,
|
||||
email=ccemail,
|
||||
email=ccemail.replace('\n', ' ').replace('\r', ' '),
|
||||
can_view=True,
|
||||
can_update=False
|
||||
)
|
||||
|
Reference in New Issue
Block a user