mirror of
https://github.com/immich-app/immich.git
synced 2025-11-18 13:32:37 +09: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