From b68f70f28b774dde196d4aa8ae69d37e6e0f7beb Mon Sep 17 00:00:00 2001 From: mertalev <101130780+mertalev@users.noreply.github.com> Date: Wed, 8 Oct 2025 00:04:24 -0400 Subject: [PATCH] typo --- server/src/services/asset-upload.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/services/asset-upload.service.ts b/server/src/services/asset-upload.service.ts index 86255eca66..90741ee33b 100644 --- a/server/src/services/asset-upload.service.ts +++ b/server/src/services/asset-upload.service.ts @@ -34,7 +34,7 @@ export class AssetUploadService extends BaseService { // This is used to proactively abort previous requests for the same asset // when a new one arrives. The previous request still holds the asset lock // and will prevent the new request from proceeding until the previous one - // times out. As normal client behavior will not have concurrent requests, we + // times out. As normal client behavior will not have concurrent requests, // we can assume the previous request has already failed on the client end. private activeRequests = new Map();