mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
[ Mobile ] Fixed mobile app not reporting webm MIME type (#2090)
This commit is contained in:
@@ -44,6 +44,9 @@ class FileHelper {
|
|||||||
case '3gp':
|
case '3gp':
|
||||||
return {"type": "video", "subType": "3gpp"};
|
return {"type": "video", "subType": "3gpp"};
|
||||||
|
|
||||||
|
case 'webm':
|
||||||
|
return {"type": "video", "subType": "webm"};
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return {"type": "unsupport", "subType": "unsupport"};
|
return {"type": "unsupport", "subType": "unsupport"};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user