mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04: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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user