Skip to content

Commit

Permalink
feat: add synology exclusion patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
etnoy committed Jan 29, 2025
1 parent 4fd8c1b commit 79201cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/services/library.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 79201cf

Please sign in to comment.