diff --git a/README.md b/README.md index b3921a2cdb..e0e5d4015a 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,13 @@ This project is under heavy development, there will be continous functions, feat [x] Auto Backup +[x] Support HEIC + # Development You can use docker compose for development, there are several services that compose Immich -1. The server +1. NestJs 2. PostgreSQL 3. Redis 4. Nginx diff --git a/server/src/modules/image-optimize/image-optimize.processor.ts b/server/src/modules/image-optimize/image-optimize.processor.ts index 7dd8e25025..269aa38247 100644 --- a/server/src/modules/image-optimize/image-optimize.processor.ts +++ b/server/src/modules/image-optimize/image-optimize.processor.ts @@ -66,15 +66,6 @@ export class ImageOptimizeProcessor { } await this.assetRepository.update(savedAsset, { resizePath: resizePath }); - - // Send file to object detection after resizing - // const detectionJob = await this.machineLearningQueue.add( - // 'object-detection', - // { - // resizePath, - // }, - // { jobId: randomUUID() }, - // ); }); } });