diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2022-11-08 14:23:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-08 14:23:18 +0100 |
| commit | 3ac19023421798bb885fef52d89d7360790f93ec (patch) | |
| tree | 6e31d73c36dd0108a540227e49e8cba348108fcb /Emby.Server.Implementations | |
| parent | a2d22c25babefd1fb941fe2e4719e606fd95aef5 (diff) | |
| parent | ba3e7027fee956f695c1b659857aa709eb0b9057 (diff) | |
Merge pull request #8698 from Bond-009/notitletest
Add regression test for #8696
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs b/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs index e35ba15f6..82f0baf32 100644 --- a/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs +++ b/Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs @@ -32,18 +32,15 @@ namespace Emby.Server.Implementations.LiveTv.Listings private readonly IServerConfigurationManager _config; private readonly IHttpClientFactory _httpClientFactory; private readonly ILogger<XmlTvListingsProvider> _logger; - private readonly IFileSystem _fileSystem; public XmlTvListingsProvider( IServerConfigurationManager config, IHttpClientFactory httpClientFactory, - ILogger<XmlTvListingsProvider> logger, - IFileSystem fileSystem) + ILogger<XmlTvListingsProvider> logger) { _config = config; _httpClientFactory = httpClientFactory; _logger = logger; - _fileSystem = fileSystem; } public string Name => "XmlTV"; |
