Skip to content

Commit

Permalink
Fix Network Control Play/Resume functionality.
Browse files Browse the repository at this point in the history
Fixes #11032.

Signed-off-by: Chris Pinkham <cpinkham@mythtv.org>
  • Loading branch information
gnassas authored and cpinkham committed Jun 28, 2013
1 parent efdff1b commit 882bf26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythtv/programs/mythfrontend/playbackbox.cpp
Expand Up @@ -3749,7 +3749,8 @@ void PlaybackBox::processNetworkControlCommand(const QString &command)

pginfo.SetPathname(pginfo.GetPlaybackURL());

PlayX(pginfo, true, true);
bool ignoreBookmark = (tokens[1] == "PLAY");
PlayX(pginfo, ignoreBookmark, true);
}
else
{
Expand Down

0 comments on commit 882bf26

Please sign in to comment.