Fix bug in URL unparser

This commit is contained in:
Fierelier 2021-03-18 23:04:29 +01:00
parent bc52fc76df
commit 04632690cb
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,8 @@ def unparseUrl(parsedUrl):
if first == False:
url += "&"
else:
first = True
url += "?"
first = False
url += parameter[0]
if parameter[1] != None: