manual types should support octet-stream and force-download response

This commit is contained in:
Georges-Antoine Assi
2026-04-07 14:22:43 -04:00
parent cb5d68b757
commit b36a8b0cdf

View File

@@ -410,7 +410,13 @@ class FSResourcesHandler(FSHandler):
) as response:
if response.status_code == status.HTTP_200_OK:
if not _check_content_type(
response, ("application/pdf",), "manual"
response,
(
"application/pdf",
"application/force-download",
"application/octet-stream",
),
"manual",
):
return None