[fix] clean err status

This commit is contained in:
jscampucci 2024-07-10 15:11:35 +02:00
parent 6f7e4f9c5d
commit 235f4ac8ca
1 changed files with 2 additions and 4 deletions

View File

@ -126,12 +126,10 @@ class DLServices {
var shellErrorController = ShellLinesController();
var shell = Shell(
stdout: shellLinesController.sink,
stderr: shellErrorController.sink,
verbose: false);
stdout: shellLinesController.sink, stderr: shellErrorController.sink);
debugPrint('Running $ytDlpPath $command');
await shell.run('$ytDlpPath $command').then((result) {
shell.run('$ytDlpPath $command').then((result) {
result.map((e) {
debugPrint('Analyse result: $e');
FileLogger().d('Analyse result: ${e.toString()}');