fix(backend): follow-up of #15620

Removes unnecessary arg `disableGlobbing` from chokidar FSWatcher, as it is no longer supports globging
This commit is contained in:
かっこかり 2025-03-07 20:10:32 +09:00 committed by GitHub
parent d7706ef1b5
commit bee4db82bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 1 deletions

View File

@ -268,7 +268,6 @@ export class FileInfoService {
private async *asyncIterateFrames(cwd: string, command: FFmpeg.FfmpegCommand): AsyncGenerator<string, void> {
const watcher = new FSWatcher({
cwd,
disableGlobbing: true,
});
let finished = false;
command.once('end', () => {