SeriesPathExists compares paths in lower-case now.

GitHub Issue #9
This commit is contained in:
Mark McDowall 2011-07-28 18:03:24 -07:00
commit 559011ba82
2 changed files with 126 additions and 1 deletions

View file

@ -178,7 +178,7 @@ namespace NzbDrone.Core.Providers
public virtual bool SeriesPathExists(string cleanPath)
{
if (GetAllSeries().Any(s => s.Path == cleanPath))
if (GetAllSeries().Any(s => s.Path.ToLower() == cleanPath.ToLower()))
return true;
return false;