mirror of https://github.com/calzoneman/sync.git
Fix #719
This commit is contained in:
parent
7fbd62142e
commit
a4e72a002a
|
@ -2,7 +2,7 @@
|
||||||
"author": "Calvin Montgomery",
|
"author": "Calvin Montgomery",
|
||||||
"name": "CyTube",
|
"name": "CyTube",
|
||||||
"description": "Online media synchronizer and chat",
|
"description": "Online media synchronizer and chat",
|
||||||
"version": "3.51.11",
|
"version": "3.51.12",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "http://github.com/calzoneman/sync"
|
"url": "http://github.com/calzoneman/sync"
|
||||||
},
|
},
|
||||||
|
|
|
@ -791,10 +791,10 @@ Callbacks = {
|
||||||
function loadNext() {
|
function loadNext() {
|
||||||
if (!PLAYER || data.type !== PLAYER.mediaType) {
|
if (!PLAYER || data.type !== PLAYER.mediaType) {
|
||||||
loadMediaPlayer(data);
|
loadMediaPlayer(data);
|
||||||
}
|
} else {
|
||||||
|
|
||||||
handleMediaUpdate(data);
|
handleMediaUpdate(data);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Persist the user's volume preference from the the player, if possible
|
// Persist the user's volume preference from the the player, if possible
|
||||||
if (PLAYER && typeof PLAYER.getVolume === "function") {
|
if (PLAYER && typeof PLAYER.getVolume === "function") {
|
||||||
|
|
Loading…
Reference in New Issue