From b6aa7651830e9c064ea2735e388ee48241355f60 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Mon, 25 Jul 2022 21:10:35 +0400 Subject: [PATCH] Added .mov format to video_formats. --- web/assets/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/assets/js/main.js b/web/assets/js/main.js index f752a09..5c434b4 100644 --- a/web/assets/js/main.js +++ b/web/assets/js/main.js @@ -1,6 +1,6 @@ //// OVERLAY FOR VIEWING MEDIA FILES -const video_formats = ["webm", "mp4"]; +const video_formats = ["webm", "mp4", "mov"]; const audio_formats = ["mp3", "flac", "opus", "ogg", "m4a"]; const image_formats = ["jpg", "jpeg", "gif", "png", "bmp", "webp"];