mirror of https://github.com/calzoneman/sync.git
Fix Google+
This commit is contained in:
parent
4d72ccb8a3
commit
5522628363
|
@ -665,10 +665,14 @@ var Getters = {
|
||||||
var title = $("media\\:title").text();
|
var title = $("media\\:title").text();
|
||||||
var videos = {};
|
var videos = {};
|
||||||
$('media\\:content[medium="video"]').each(function(index, element){
|
$('media\\:content[medium="video"]').each(function(index, element){
|
||||||
var url = $(this).attr("url")
|
var url = $(this).attr("url");
|
||||||
var type = url.match(/itag=(\d\d)/)
|
var match = url.match(/itag=(\d+)/)
|
||||||
if(type && type[1]){
|
if (!match) {
|
||||||
type = type[1]
|
match = url.match(/googleusercontent.*=m(\d+)$/);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (match && match[1]) {
|
||||||
|
var type = match[1];
|
||||||
videos[type] = {
|
videos[type] = {
|
||||||
format: type,
|
format: type,
|
||||||
link: url
|
link: url
|
||||||
|
|
Loading…
Reference in New Issue