mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Removed un-needed WebClient from XbmcProvider.
BackLog Provider created. QueueIfWanted moved to new class (RssItemProcessingProvider) to cutdown on repeating code (between RssSyncProvider and BacklogProvider) Style.css now sets width for rootDirectories class (when adding a new show).
This commit is contained in:
parent
b2b4423c92
commit
84f0dfed4e
11 changed files with 238 additions and 148 deletions
|
@ -74,9 +74,9 @@ namespace NzbDrone.Core.Helpers
|
|||
new SceneNameModel { SeriesId = 73244, Name = "The Office US" },
|
||||
};
|
||||
|
||||
public static int FindByName(string seriesName)
|
||||
public static int FindByName(string cleanSeriesName)
|
||||
{
|
||||
var map = _sceneNameMappings.Single(s => s.Name == seriesName);
|
||||
var map = _sceneNameMappings.Single(s => Parser.NormalizeTitle(s.Name) == cleanSeriesName);
|
||||
|
||||
if (map == null)
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue