Remove empty list item in extractors lists

This commit is contained in:
Pierre Rudloff 2016-08-06 01:46:29 +02:00
parent 25ec184d5e
commit fe6ce8409a
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ class VideoDownload
);
$process = $this->procBuilder->getProcess();
$process->run();
return explode(PHP_EOL, $process->getOutput());
return explode(PHP_EOL, trim($process->getOutput()));
}
/**