fix(server): await thumbnail generation before returning (#3975)

* await sharp command, minor fixes

* removed outdated test
This commit is contained in:
Mert
2023-09-04 19:24:55 -04:00
committed by GitHub
parent 90f9501902
commit 04d4a30471
3 changed files with 3 additions and 8 deletions

View File

@@ -109,7 +109,7 @@ export class MediaService {
async handleGenerateWebpThumbnail({ id }: IEntityJob) {
const [asset] = await this.assetRepository.getByIds([id]);
if (!asset || !asset.resizePath) {
if (!asset) {
return false;
}