Skip to content

Commit

Permalink
Fix another case sensitive title check.
Browse files Browse the repository at this point in the history
Refs ##10331
  • Loading branch information
gigem committed Feb 14, 2012
1 parent dcfe7b0 commit fe27dfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/programs/mythbackend/scheduler.cpp
Expand Up @@ -894,7 +894,7 @@ void Scheduler::BuildListMaps(void)
p->GetRecordingStatus() == rsUnknown)
{
conflictlist.push_back(p);
titlelistmap[p->GetTitle()].push_back(p);
titlelistmap[p->GetTitle().toLower()].push_back(p);
recordidlistmap[p->GetRecordingRuleID()].push_back(p);
}
}
Expand Down Expand Up @@ -1021,7 +1021,7 @@ void Scheduler::MarkOtherShowings(RecordingInfo *p)
{
RecList *showinglist;

showinglist = &titlelistmap[p->GetTitle()];
showinglist = &titlelistmap[p->GetTitle().toLower()];
MarkShowingsList(*showinglist, p);

if (p->GetRecordingRuleType() == kFindOneRecord ||
Expand Down

0 comments on commit fe27dfe

Please sign in to comment.