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:
parent
cd59f7aad6
commit
1a94530935
1 changed files with 3 additions and 0 deletions
|
@ -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"};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue