1
0
mirror of https://github.com/immich-app/immich.git synced 2025-06-15 03:30:33 +02:00

feat(server): support .NEF file (#746)

This commit is contained in:
Alex
2022-09-23 19:09:45 -05:00
committed by GitHub
parent c3979f6e31
commit b0cd2522e0
2 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,7 @@ export const openFileUploadDialog = (uploadType: UploadType) => {
fileSelector.type = 'file';
fileSelector.multiple = true;
fileSelector.accept = 'image/*,video/*,.heic,.heif,.dng,.3gp';
fileSelector.accept = 'image/*,video/*,.heic,.heif,.dng,.3gp,.nef';
fileSelector.onchange = async (e: Event) => {
const target = e.target as HTMLInputElement;