Commit f2f032ecf069f7ce62e4b8541549c330165cafe2
1 parent
d1823e72
Exists in
master
and in
2 other branches
Fixing logout url from webconference
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
webconference/views.py
@@ -176,7 +176,7 @@ def finish(request): | @@ -176,7 +176,7 @@ def finish(request): | ||
176 | 176 | ||
177 | request.log_context = log_context | 177 | request.log_context = log_context |
178 | 178 | ||
179 | - url = {'url': 'http://localhost:8000' + str(reverse_lazy('webconferences:view', kwargs = {'slug': request.GET['roomName']}))} | 179 | + url = {'url': str(reverse_lazy('webconferences:view', kwargs = {'slug': request.GET['roomName']}))} |
180 | return JsonResponse(url, safe=False) | 180 | return JsonResponse(url, safe=False) |
181 | 181 | ||
182 | 182 |