We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcfe7b0 commit fe27dfeCopy full SHA for fe27dfe
mythtv/programs/mythbackend/scheduler.cpp
@@ -894,7 +894,7 @@ void Scheduler::BuildListMaps(void)
894
p->GetRecordingStatus() == rsUnknown)
895
{
896
conflictlist.push_back(p);
897
- titlelistmap[p->GetTitle()].push_back(p);
+ titlelistmap[p->GetTitle().toLower()].push_back(p);
898
recordidlistmap[p->GetRecordingRuleID()].push_back(p);
899
}
900
@@ -1021,7 +1021,7 @@ void Scheduler::MarkOtherShowings(RecordingInfo *p)
1021
1022
RecList *showinglist;
1023
1024
- showinglist = &titlelistmap[p->GetTitle()];
+ showinglist = &titlelistmap[p->GetTitle().toLower()];
1025
MarkShowingsList(*showinglist, p);
1026
1027
if (p->GetRecordingRuleType() == kFindOneRecord ||
0 commit comments