summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/backend/src/core/DriveService.ts10
1 files changed, 8 insertions, 2 deletions
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;