diff --git a/README.md b/README.md index 51378c86d8..e8684a4a81 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ Self-hosted photo and video backup solution directly from your mobile phone. +![Current Stage](https://media.giphy.com/media/UcO3eQ1h6Bjm1Sqexd/giphy-downsized-large.gif) + # Note This project is under heavy development, there will be continous functions, features and api changes. diff --git a/server/src/modules/image-optimize/image-optimize.processor.ts b/server/src/modules/image-optimize/image-optimize.processor.ts index 10a13b4781..ae11c2e4da 100644 --- a/server/src/modules/image-optimize/image-optimize.processor.ts +++ b/server/src/modules/image-optimize/image-optimize.processor.ts @@ -42,6 +42,7 @@ export class ImageOptimizeProcessor { .toFile(resizePath, async (err, info) => { if (err) { console.error('Error resizing file ', err); + return; } await this.assetRepository.update(savedAsset, { resizePath: resizePath });