This commit is contained in:
neodc 2014-05-14 02:16:19 +02:00
parent d08e2832fc
commit f2d3d12e2b
1 changed files with 1 additions and 2 deletions

View File

@ -100,8 +100,7 @@ foreach ($playlists as $p) {
// we have to fetch every video in batches of 50.
$allvids = array();
for ($i = 0; $i < count($allitems); $i = $i + 50) {
$j = isset($allitems[$i + 50]) ? $i + 50 : (count($allitems) - 1) % 50;
$rvids = get_real_videos(array_slice($allitems, $i, $j));
$rvids = get_real_videos(array_slice($allitems, $i, 50));
if ($rvids) {
foreach ($rvids as $r) {
$allvids[] = $r;