1
0
mirror of https://github.com/Rudloff/alltube.git synced 2024-06-22 07:06:40 +02:00

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

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()));
}
/**