mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
Added more code to FeedProviderBase
This commit is contained in:
parent
7e4c38ec3f
commit
375a0c333e
2 changed files with 61 additions and 32 deletions
|
@ -111,9 +111,9 @@ namespace NzbDrone.Core.Providers
|
|||
_sonioRepo.Add(repoSeries);
|
||||
}
|
||||
|
||||
public Series FindSeries(string cleanTitle)
|
||||
public Series FindSeries(string title)
|
||||
{
|
||||
return _sonioRepo.Single<Series>(s => s.CleanTitle == cleanTitle);
|
||||
return _sonioRepo.Single<Series>(s => s.CleanTitle == Parser.NormalizeTitle(title));
|
||||
}
|
||||
|
||||
public void UpdateSeries(Series series)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue