You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-06-15 03:30:33 +02:00
Fixed webp upload on web (#460)
This commit is contained in:
@ -63,7 +63,7 @@ async function fileUploader(asset: File, uploadType: UploadType) {
|
||||
let exifData = null;
|
||||
|
||||
if (assetType !== 'VIDEO') {
|
||||
exifData = await exifr.parse(asset);
|
||||
exifData = await exifr.parse(asset).catch((e) => console.log('error parsing exif', e));
|
||||
}
|
||||
|
||||
const createdAt =
|
||||
|
Reference in New Issue
Block a user