Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
Music player controls don't work if video was previously played.
  • Loading branch information
cmcgerty committed Sep 30, 2015
1 parent 3c2f82f commit 4956bf3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions MediaBrowser 3/app/javascript/Gui/GuiPlayer/GuiPlayer.js
Expand Up @@ -413,6 +413,9 @@ GuiPlayer.setCurrentTime = function(time) {
};

GuiPlayer.onBufferingStart = function() {
if (GuiMusicPlayer.Status == "PLAYING"){
return;
}
this.Status = "PLAYING";
FileLog.write("Playback : Buffering...");

Expand All @@ -430,6 +433,9 @@ GuiPlayer.onBufferingProgress = function(percent) {
};

GuiPlayer.onBufferingComplete = function() {
if (GuiMusicPlayer.Status == "PLAYING"){
return;
}
FileLog.write("Playback : Buffering Complete");

//Start Subtitle Display - Mainly for Transcode pauses
Expand Down
2 changes: 1 addition & 1 deletion MediaBrowser 3/app/javascript/Main.js
Expand Up @@ -4,7 +4,7 @@ var tvKey = new Common.API.TVKeyValue();

var Main =
{
version : "v0.593c",
version : "v0.593d",
requiredServerVersion : "3.0.5211",
requiredDevServerVersion : "3.0.5507.2131",

Expand Down

0 comments on commit 4956bf3

Please sign in to comment.