Skip to content

Commit

Permalink
Fixed update of some recording status transitions.
Browse files Browse the repository at this point in the history
Some status transitions, most notbably rsTuning to rsRecording, were
not immediately reflected in the EPG and other screens.
  • Loading branch information
gigem committed Apr 16, 2011
1 parent bcf84a5 commit 0e22930
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions mythtv/programs/mythbackend/scheduler.cpp
Expand Up @@ -548,6 +548,11 @@ void Scheduler::UpdateRecStatus(RecordingInfo *pginfo)
reschedQueue.enqueue(0);
reschedWait.wakeOne();
}
else
{
MythEvent me("SCHEDULE_CHANGE");
gCoreContext->dispatch(me);
}
}
return;
}
Expand Down Expand Up @@ -593,6 +598,11 @@ void Scheduler::UpdateRecStatus(uint cardid, uint chanid,
reschedQueue.enqueue(0);
reschedWait.wakeOne();
}
else
{
MythEvent me("SCHEDULE_CHANGE");
gCoreContext->dispatch(me);
}
}
return;
}
Expand Down

0 comments on commit 0e22930

Please sign in to comment.