We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40190a5 commit 49519daCopy full SHA for 49519da
src/findAllSrtFiles.ts
@@ -18,7 +18,12 @@ export async function findAllSrtFiles(config: ScanConfig): Promise<string[]> {
18
19
if (entry.isDirectory()) {
20
await scan(fullPath);
21
- } else if (entry.isFile() && extname(entry.name).toLowerCase() === '.srt') {
+ } else if (
22
+ entry.isFile() &&
23
+ extname(entry.name).toLowerCase() === '.srt' &&
24
+ !entry.name.includes('.ffsubsync.') &&
25
+ !entry.name.includes('.autosubsync.')
26
+ ) {
27
files.push(fullPath);
28
}
29
0 commit comments