diff --git a/sbapp/sideband/core.py b/sbapp/sideband/core.py index 5d4a787..82b01be 100644 --- a/sbapp/sideband/core.py +++ b/sbapp/sideband/core.py @@ -5110,8 +5110,7 @@ class SidebandCore(): self.wfile.write(es.encode("utf-8")) else: try: - with open(path, 'rb') as f: - data = f.read() + with open(path.replace("%20", " "), "rb") as f: data = f.read() self.send_response(200) if path.lower().endswith(".apk"): self.send_header("Content-type", "application/vnd.android.package-archive")