From 1a94530935588c7bfa076072803f3f9e3d4a39cf Mon Sep 17 00:00:00 2001 From: Zeyad Tamimi Date: Sun, 26 Mar 2023 17:38:23 -0700 Subject: [PATCH] [ Mobile ] Fixed mobile app not reporting webm MIME type (#2090) --- mobile/lib/utils/files_helper.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mobile/lib/utils/files_helper.dart b/mobile/lib/utils/files_helper.dart index 6231764d86..8b9d5c0409 100644 --- a/mobile/lib/utils/files_helper.dart +++ b/mobile/lib/utils/files_helper.dart @@ -44,6 +44,9 @@ class FileHelper { case '3gp': return {"type": "video", "subType": "3gpp"}; + case 'webm': + return {"type": "video", "subType": "webm"}; + default: return {"type": "unsupport", "subType": "unsupport"}; }