Commit 94642454c993587b9352b25048b47b123aa7ce30

Authored by Gustavo
2 parents 55690853 f2f032ec

Merge branch 'refactoring' of https://github.com/amadeusproject/amadeuslms into refactoring

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