Skip to content

Commit

Permalink
Merge pull request #792 from koriaf/master
Browse files Browse the repository at this point in the history
fix<ticket-search>: avoid exception of using function get_tickets_in_queues as property
  • Loading branch information
gwasser committed Jan 4, 2020
2 parents 65943e8 + f72fbfa commit c143cb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpdesk/views/staff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c143cb3

Please sign in to comment.