[fix] clean err status
This commit is contained in:
parent
6f7e4f9c5d
commit
235f4ac8ca
|
|
@ -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()}');
|
||||
|
|
|
|||
Loading…
Reference in New Issue