all: add space after catch

This commit is contained in:
jj
2024-11-15 12:19:49 +00:00
parent 4c006b2291
commit f7dc6cebad
4 changed files with 7 additions and 7 deletions

View File

@ -114,7 +114,7 @@ export default class LibAVWrapper {
if (name === 'progress.txt') {
try {
return this.#emitProgress(data);
} catch(e) {
} catch (e) {
console.error(e);
}
} else if (name !== outputName) return;
@ -230,4 +230,4 @@ export default class LibAVWrapper {
this.onProgress(progress);
}
}
}