url encode question marks

This commit is contained in:
iou1name 2025-05-01 12:30:35 -04:00
parent 82fbae7942
commit c78eb62659

View File

@ -114,4 +114,5 @@ def convert_filepath(path):
"""Convert a filepath to a URL."""
path = config.server_homepage + '/library/' + path
#path = parse.quote(path)
path = path.replace('?', '%3F')
return path