From 142b3b552e7c374b836cb4f8ef44c36eeb5fcef0 Mon Sep 17 00:00:00 2001 From: Marie Date: Mon, 5 May 2025 23:04:43 +0000 Subject: [PATCH] update comment --- packages/backend/src/core/BunnyService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/BunnyService.ts b/packages/backend/src/core/BunnyService.ts index 9e606423b6..89428435af 100644 --- a/packages/backend/src/core/BunnyService.ts +++ b/packages/backend/src/core/BunnyService.ts @@ -71,7 +71,7 @@ export class BunnyService { const req = https.request(options); - // Log and throw error if BunnyCDN detects wrong data and return to prevent console spam as this event occurs multiple times + // Log and return if BunnyCDN detects wrong data (return is used to prevent console spam as this event occurs multiple times) req.on('response', (res) => { if (res.statusCode === 401) { this.bunnyCdnLogger.error('Invalid AccessKey or region hostname');