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
|
@ -2,7 +2,6 @@
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using System.Xml.Linq;
|
||||
using NLog;
|
||||
|
@ -15,12 +14,10 @@ namespace NzbDrone.Core.Providers
|
|||
private readonly IConfigProvider _configProvider;
|
||||
private readonly IHttpProvider _httpProvider;
|
||||
|
||||
private WebClient _webClient;
|
||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
|
||||
public XbmcProvider(IConfigProvider configProvider, IHttpProvider httpProvider)
|
||||
{
|
||||
_webClient = new WebClient();
|
||||
_configProvider = configProvider;
|
||||
_httpProvider = httpProvider;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue