Remove empty list item in extractors lists
This commit is contained in:
parent
25ec184d5e
commit
fe6ce8409a
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ class VideoDownload
|
||||||
);
|
);
|
||||||
$process = $this->procBuilder->getProcess();
|
$process = $this->procBuilder->getProcess();
|
||||||
$process->run();
|
$process->run();
|
||||||
return explode(PHP_EOL, $process->getOutput());
|
return explode(PHP_EOL, trim($process->getOutput()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue