mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
More tests
This commit is contained in:
parent
ccbbad54ce
commit
23f6cc3901
9 changed files with 203 additions and 50 deletions
|
@ -112,7 +112,8 @@ namespace NzbDrone.Core.Providers
|
|||
|
||||
public virtual Series FindSeries(string title)
|
||||
{
|
||||
return _sonioRepo.Single<Series>(s => s.CleanTitle == Parser.NormalizeTitle(title));
|
||||
var normalizeTitle = Parser.NormalizeTitle(title);
|
||||
return _sonioRepo.Single<Series>(s => s.CleanTitle == normalizeTitle);
|
||||
}
|
||||
|
||||
public virtual void UpdateSeries(Series series)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue