diff --git a/packages/backend/src/core/DriveService.ts b/packages/backend/src/core/DriveService.ts index 781b435c9a..e75928d83e 100644 --- a/packages/backend/src/core/DriveService.ts +++ b/packages/backend/src/core/DriveService.ts @@ -234,16 +234,22 @@ export class DriveService { if (alts.thumbnail) { promises.push(this.internalStorageService.saveFromBuffer(thumbnailAccessKey, alts.thumbnail.data)); - this.registerLogger.info(`thumbnail stored: ${thumbnailAccessKey}`); } if (alts.webpublic) { promises.push(this.internalStorageService.saveFromBuffer(webpublicAccessKey, alts.webpublic.data)); - this.registerLogger.info(`web stored: ${webpublicAccessKey}`); } const [url, thumbnailUrl, webpublicUrl] = await Promise.all(promises); + if (thumbnailUrl) { + this.registerLogger.info(`thumbnail stored: ${thumbnailAccessKey}`); + } + + if (webpublicUrl) { + this.registerLogger.info(`web stored: ${webpublicAccessKey}`); + } + file.storedInternal = true; file.url = url; file.thumbnailUrl = thumbnailUrl ?? null;