0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-07 00:50:23 -05:00

[ 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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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