Problem/Motivation

if using feed version 2 the video id is wrong

Proposed resolution

file: FeedsYoutubeParser.inc
change:

$arr = explode('/', $entry->id);
$id = $arr[count($arr)-1];

to:

if(strpos($entry->id, 'tag:')===0){
    $arr = explode(':', $entry->id);
    $id = $arr[count($arr)-1];
}else{
    $arr = explode('/', $entry->id);
    $id = $arr[count($arr)-1];
}

Comments

2pha’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

Now that this issue is closed, review the contribution record.

As a contributor, attribute any organization that helped you, or if you volunteered your own time.

Maintainers, credit people who helped resolve this issue.