mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
Fixed webp upload on web (#460)
This commit is contained in:
parent
4b34f017ca
commit
a388c5a642
2 changed files with 142 additions and 140 deletions
|
|
@ -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 =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue