From 532bb09459d77d0951df56407899215bdf53ce19 Mon Sep 17 00:00:00 2001 From: djadji-gueye Date: Wed, 12 Aug 2026 14:12:49 +0000 Subject: [PATCH] fix(server): remove extra closing brace in library watcher log messages --- server/src/services/library.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/services/library.service.ts b/server/src/services/library.service.ts index f13a440f84..6304cf9053 100644 --- a/server/src/services/library.service.ts +++ b/server/src/services/library.service.ts @@ -110,7 +110,7 @@ export class LibraryService extends BaseService { const handler = async (event: string, path: string) => { if (matcher(path)) { - this.logger.debug(`File ${event} event received for ${path} in library ${library.id}}`); + this.logger.debug(`File ${event} event received for ${path} in library ${library.id}`); await this.jobRepository.queue({ name: JobName.LibrarySyncFiles, data: { libraryId: library.id, paths: [path] }, @@ -121,7 +121,7 @@ export class LibraryService extends BaseService { }; const deletionHandler = async (path: string) => { - this.logger.debug(`File unlink event received for ${path} in library ${library.id}}`); + this.logger.debug(`File unlink event received for ${path} in library ${library.id}`); await this.jobRepository.queue({ name: JobName.LibraryRemoveAsset, data: { libraryId: library.id, paths: [path] },