mirror of
https://github.com/markqvist/Sideband.git
synced 2025-07-06 12:24:48 -04:00
Fixed content-type header on APK file downloads
This commit is contained in:
parent
5ca59cdf3b
commit
96cbca2684
1 changed files with 2 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue