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"}; }