From e63dc49475fe6846229daeb3576b05ca934f8b5e Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Tue, 8 Feb 2022 13:55:18 -0600 Subject: [PATCH] Update readme with gif --- README.md | 2 ++ server/src/modules/image-optimize/image-optimize.processor.ts | 1 + 2 files changed, 3 insertions(+) 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 });