[ Mobile ] Fixed mobile app not reporting webm MIME type (#2090)

This commit is contained in:
Zeyad Tamimi
2023-03-26 17:38:23 -07:00
committed by GitHub
parent cd59f7aad6
commit 1a94530935

View File

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