Fixed content-type header on APK file downloads

This commit is contained in:
Mark Qvist 2023-09-21 00:05:21 +02:00
parent 5ca59cdf3b
commit 96cbca2684

View File

@ -2139,6 +2139,8 @@ class SidebandCore():
with open(path, '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")
self.end_headers()
self.wfile.write(data)
except Exception as e: