summaryrefslogtreecommitdiff
path: root/parse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parse.cpp')
-rw-r--r--parse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.cpp b/parse.cpp
index 7a2de45..c464f33 100644
--- a/parse.cpp
+++ b/parse.cpp
@@ -490,7 +490,7 @@ void cParse::FetchSeasonEpisode(cEvent *event)
{
char *lf=strchr(title,'\n');
if (lf) *lf=0;
- if (!strcmp(event->ShortText(),title))
+ if (!strncasecmp(event->ShortText(),title,strlen(title)))
{
xevent.SetSeason(season);
xevent.SetEpisode(episode);