Skip to content

Commit

Permalink
Refs #10489. Bypass IsTunable check for kPseudoChangeChannel.
Browse files Browse the repository at this point in the history
When a scheduled recorder grabs a LiveTV instance we already know
the channel is tunable on this recorder.
  • Loading branch information
daniel-kristjansson committed Jul 18, 2012
1 parent d933749 commit 40b0770
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -7207,7 +7207,11 @@ void TV::ChangeChannel(PlayerContext *ctx, uint chanid, const QString &chan)
bool getit = false;
if (ctx->recorder)
{
if (ctx->pseudoLiveTVState == kPseudoRecording)
if (kPseudoChangeChannel == ctx->pseudoLiveTVState)
{
getit = false;
}
else if (kPseudoRecording == ctx->pseudoLiveTVState)
{
getit = true;
}
Expand Down

0 comments on commit 40b0770

Please sign in to comment.