VideoInfoScanner::EnumerateEpisodeItem: don't use ToLower with UTF-8 strings, fixes...
authorKarlson2k <k2k@narod.ru>
Thu, 5 Dec 2013 19:50:02 +0000 (23:50 +0400)
committerKarlson2k <k2k@narod.ru>
Thu, 5 Dec 2013 19:52:10 +0000 (23:52 +0400)
Not needed as RegExps are done in caseless mode

xbmc/video/VideoInfoScanner.cpp

index cc3bd2f..4e2780a 100644 (file)
@@ -867,7 +867,6 @@ namespace VIDEO
     CStdString strLabel=item->GetPath();
     // URLDecode in case an episode is on a http/https/dav/davs:// source and URL-encoded like foo%201x01%20bar.avi
     CURL::Decode(strLabel);
-    StringUtils::ToLower(strLabel);
 
     for (unsigned int i=0;i<expression.size();++i)
     {