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

View File

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