morss: improve http parameter parsing

master
pictuga 2018-09-30 22:01:19 +02:00
parent 945e0dceab
commit 2ccf36617a
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ def cgi_app(environ, start_response):
if url.startswith(':'):
split = url.split('/', 1)
options = split[0].replace('|', '/').split(':')[1:]
options = split[0].replace('|', '/').replace('\\\'', '\'').split(':')[1:]
if len(split) > 1:
url = split[1]