Переглянути джерело

fix: image preview triggers binary download (#19070)

tags/1.4.0
xiaotian 6 місяці тому
джерело
коміт
23f6914b9b
Аккаунт користувача з таким Email не знайдено
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      api/controllers/files/image_preview.py

+ 1
- 1
api/controllers/files/image_preview.py Переглянути файл

@@ -75,7 +75,7 @@ class FilePreviewApi(Resource):
if args["as_attachment"]:
encoded_filename = quote(upload_file.name)
response.headers["Content-Disposition"] = f"attachment; filename*=UTF-8''{encoded_filename}"
response.headers["Content-Type"] = "application/octet-stream"
response.headers["Content-Type"] = "application/octet-stream"

return response


Завантаження…
Відмінити
Зберегти