From 4830f89ed3ce8f7d31ae220e6b47039404a6e656 Mon Sep 17 00:00:00 2001 From: Chuong Tang Date: Thu, 2 Jun 2022 08:38:33 -0600 Subject: [PATCH] Added webm into mimeType and previewType --- app/config/storage/logos.php | 1 + app/config/storage/mimes.php | 1 + 2 files changed, 2 insertions(+) diff --git a/app/config/storage/logos.php b/app/config/storage/logos.php index 8816611ed..d87019826 100644 --- a/app/config/storage/logos.php +++ b/app/config/storage/logos.php @@ -7,6 +7,7 @@ return [ // Based on this list @see http://stackoverflow.com/a/4212908/2299554 // Video Files 'video/mp4' => __DIR__.'/logos/video.png', 'video/x-flv' => __DIR__.'/logos/video.png', + 'video/webm' => __DIR__.'/logos/video.png', 'application/x-mpegURL' => __DIR__.'/logos/video.png', 'video/MP2T' => __DIR__.'/logos/video.png', 'video/3gpp' => __DIR__.'/logos/video.png', diff --git a/app/config/storage/mimes.php b/app/config/storage/mimes.php index 7995ef368..1c732307d 100644 --- a/app/config/storage/mimes.php +++ b/app/config/storage/mimes.php @@ -10,6 +10,7 @@ return [ // Video Files 'video/mp4', 'video/x-flv', + 'video/webm', 'application/x-mpegURL', 'video/MP2T', 'video/3gpp',