From d60acc7cb4d0ffa07a8a7db3b1040dc9114e6579 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Thu, 29 Dec 2022 15:40:41 +0530 Subject: [PATCH] fix: allow video files to be uploaded --- frappe/handler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/handler.py b/frappe/handler.py index cee6d3fbde..9d42875ab7 100644 --- a/frappe/handler.py +++ b/frappe/handler.py @@ -32,6 +32,8 @@ ALLOWED_MIMETYPES = ( "application/vnd.oasis.opendocument.text", "application/vnd.oasis.opendocument.spreadsheet", "text/plain", + "video/quicktime", + "video/mp4", )