feat(server): synology exclusion patterns (#15773)

feat: add synology exclusion patterns
pull/15780/head
Jonathan Jogenfors 2025-01-29 20:42:21 +01:00 committed by GitHub
parent 4fd8c1b3c1
commit ca79e25a6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ export class LibraryService extends BaseService {
ownerId: dto.ownerId,
name: dto.name ?? 'New External Library',
importPaths: dto.importPaths ?? [],
exclusionPatterns: dto.exclusionPatterns ?? ['**/@eaDir/**', '**/._*'],
exclusionPatterns: dto.exclusionPatterns ?? ['**/@eaDir/**', '**/._*', '**/#recycle/**', '**/#snapshot/**'],
});
return mapLibrary(library);
}