mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-26 16:48:50 +01:00
fix<ticket-search>: avoid exception of using function get_tickets_in_queues as property
This commit is contained in:
parent
65943e8623
commit
f72fbfa024
@ -839,7 +839,7 @@ def ticket_list(request):
|
||||
|
||||
if filter:
|
||||
try:
|
||||
ticket = huser.get_tickets_in_queues.get(**filter)
|
||||
ticket = huser.get_tickets_in_queues().get(**filter)
|
||||
return HttpResponseRedirect(ticket.staff_url)
|
||||
except Ticket.DoesNotExist:
|
||||
# Go on to standard keyword searching
|
||||
|
Loading…
Reference in New Issue
Block a user