handle spaces

This commit is contained in:
SemvdH
2025-11-16 16:01:16 +01:00
parent 1615655f6c
commit 85ff016cd3

View File

@@ -6,6 +6,7 @@ from change_track import change_track, get_all_tracks, get_configs, get_preview_
class Handler(BaseHTTPRequestHandler):
def do_GET(self):
self.path = self.path.replace("%20", " ") # handle spaces in URLs
if (self.handle_GET_path()):
return