Added another failsafe for video not always starting from 0

This commit is contained in:
Kasper Rynning-Tønnesen
2017-04-29 14:37:29 +02:00
parent f2a98d6bae
commit cc61a0cb89
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -234,7 +234,7 @@ var Player = {
chrome.cast.media.GenericMediaMetadata({metadataType: "GENERIC", title:song_title, image: 'https://img.youtube.com/vi/'+id+'/mqdefault.jpg'});
chrome.cast.Image('https://img.youtube.com/vi/'+id+'/mqdefault.jpg');
} else {
Player.player.loadVideoById(id);
Player.player.loadVideoById(id, 0);
}
},