fix(server): remove extra closing brace in library watcher log messages

This commit is contained in:
djadji-gueye 2026-08-12 14:12:49 +00:00
parent 0293414abd
commit 532bb09459

View file

@ -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] },