Skip to content

Commit 49519da

Browse files
author
John Corser
committed
fix: prevent reprocessing subtitles
1 parent 40190a5 commit 49519da

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/findAllSrtFiles.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ export async function findAllSrtFiles(config: ScanConfig): Promise<string[]> {
1818

1919
if (entry.isDirectory()) {
2020
await scan(fullPath);
21-
} else if (entry.isFile() && extname(entry.name).toLowerCase() === '.srt') {
21+
} else if (
22+
entry.isFile() &&
23+
extname(entry.name).toLowerCase() === '.srt' &&
24+
!entry.name.includes('.ffsubsync.') &&
25+
!entry.name.includes('.autosubsync.')
26+
) {
2227
files.push(fullPath);
2328
}
2429
}

0 commit comments

Comments
 (0)