Skip to content

Commit

Permalink
Use the correct index for program.previouslyshown in the query result.
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Stichnoth <jstichnoth@mythtv.org>
(cherry picked from commit 25aa598)
  • Loading branch information
Joey Morris authored and stichnot committed Mar 19, 2013
1 parent e2454f2 commit b2a8b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/programinfo.cpp
Expand Up @@ -1936,7 +1936,7 @@ bool ProgramInfo::LoadProgramFromRecorded(
query.value(31).toInt() == COMM_FLAG_DONE);
set_flag(programflags, FL_COMMPROCESSING ,
query.value(31).toInt() == COMM_FLAG_PROCESSING);
set_flag(programflags, FL_REPEAT, query.value(29).toBool());
set_flag(programflags, FL_REPEAT, query.value(32).toBool());
set_flag(programflags, FL_TRANSCODED,
query.value(34).toInt() == TRANSCODING_COMPLETE);
set_flag(programflags, FL_DELETEPENDING, query.value(35).toBool());
Expand Down

0 comments on commit b2a8b1e

Please sign in to comment.