Skip to content

Commit

Permalink
Fixes #10566. Reverts part of 3a51b83 to improve channel changes.
Browse files Browse the repository at this point in the history
The first half of 3a51b83 looks like a bug (the new condition means
the following "else if" branch is never taken).  Removing it stops
guide-based channel changes from being forced onto a different tuner.

Note: this fix exposes another problem with guide-based channel
changes - you can't switch to a different tuner in the current input
group.  Fix is in progress.
  • Loading branch information
stichnot committed Apr 11, 2012
1 parent 15591c6 commit 0b92144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -7066,7 +7066,7 @@ void TV::ChangeChannel(PlayerContext *ctx, uint chanid, const QString &chan)
bool getit = false;
if (ctx->recorder)
{
if ((ctx->pseudoLiveTVState == kPseudoRecording) || chanid)
if (ctx->pseudoLiveTVState == kPseudoRecording)
{
getit = true;
}
Expand Down

0 comments on commit 0b92144

Please sign in to comment.