1
0
mirror of https://github.com/immich-app/immich.git synced 2025-01-31 18:04:55 +02:00

Add raf and srw to the file names.

This commit is contained in:
Skyler Mäntysaari 2023-02-09 20:13:19 +02:00
parent 0d1b93d5ec
commit 14a55c67b4

View File

@ -142,6 +142,10 @@ export function getFileMimeType(file: File): string {
return 'video/3gpp';
case 'nef':
return 'image/nef';
case 'raf':
return 'image/raf';
case 'srw':
return 'image/srw';
default:
return '';
}