Fix the media proxy

This commit is contained in:
Thomas Sileo 2019-08-20 22:55:55 +02:00
parent 181328d518
commit 2cd0835208

4
app.py
View file

@ -258,7 +258,7 @@ def proxy(scheme: str, url: str) -> Any:
}
req_headers["Host"] = urlparse(url).netloc
resp = requests.get(url, stream=True, headers=req_headers)
app.logger.info(f"proxied req {url}: {resp!r}")
app.logger.info(f"proxied req {url} {req_headers}: {resp!r}")
def data():
for chunk in resp.raw.stream(decode_content=False):
@ -278,7 +278,7 @@ def proxy(scheme: str, url: str) -> Any:
"last-modified",
]
}
return Response(data(), headers=resp_headers)
return Response(data(), headers=resp_headers, status=resp.status_code)
@app.route("/media/<media_id>")