Skip to content

Commit fe27dfe

Browse files
committed
Fix another case sensitive title check.
Refs ##10331
1 parent dcfe7b0 commit fe27dfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mythtv/programs/mythbackend/scheduler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ void Scheduler::BuildListMaps(void)
894894
p->GetRecordingStatus() == rsUnknown)
895895
{
896896
conflictlist.push_back(p);
897-
titlelistmap[p->GetTitle()].push_back(p);
897+
titlelistmap[p->GetTitle().toLower()].push_back(p);
898898
recordidlistmap[p->GetRecordingRuleID()].push_back(p);
899899
}
900900
}
@@ -1021,7 +1021,7 @@ void Scheduler::MarkOtherShowings(RecordingInfo *p)
10211021
{
10221022
RecList *showinglist;
10231023

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

10271027
if (p->GetRecordingRuleType() == kFindOneRecord ||

0 commit comments

Comments
 (0)