Handle paths in URLs

This commit is contained in:
Ian Gulliver
2020-11-25 15:53:09 -08:00
parent 8547b88977
commit 6a8d127dce

View File

@@ -30,7 +30,7 @@ room = qs['room'][0]
presentUrl = urllib.parse.urlunparse([
url.scheme,
url.netloc,
'/api/present',
url.path + 'api/present',
url.params,
urllib.parse.urlencode({'room_id': room}),
url.fragment,