Skip to content

Commit

Permalink
Fix findAllScheduledPrograms() placing enddate into rectype causing a…
Browse files Browse the repository at this point in the history
…ll recording rules to show as 'Not Recording'
  • Loading branch information
stuartm committed Jul 29, 2011
1 parent b743b41 commit 640023c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythbackend/scheduler.cpp
Expand Up @@ -4166,7 +4166,7 @@ void Scheduler::findAllScheduledPrograms(RecList &proglist)

while (result.next())
{
RecordingType rectype = RecordingType(result.value(18).toInt());
RecordingType rectype = RecordingType(result.value(21).toInt());
QDateTime startts;
QDateTime endts;
if (rectype == kSingleRecord ||
Expand Down

0 comments on commit 640023c

Please sign in to comment.