From cfbad58d2c9d72e147e7714b32974a2aa26b2d5b Mon Sep 17 00:00:00 2001 From: Jonathan Jogenfors Date: Tue, 26 Mar 2024 00:03:01 +0100 Subject: [PATCH] fix lint --- server/src/services/library.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/services/library.service.ts b/server/src/services/library.service.ts index 3a5a0a6d9..9eb06c89d 100644 --- a/server/src/services/library.service.ts +++ b/server/src/services/library.service.ts @@ -625,7 +625,7 @@ export class LibraryService extends EventEmitter { library.importPaths.map((importPath) => this.validateImportPath(importPath)), ); - let validImportPaths: string[] = []; + const validImportPaths: string[] = []; for (const validation of pathValidation) { if (validation.isValid) {