mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-13 12:33:01 +03:00
start tvdb migration for plugin interface
This commit is contained in:
@@ -9,7 +9,7 @@ using MediaBrowser.Model.Entities;
|
||||
using MediaBrowser.Model.Globalization;
|
||||
using MediaBrowser.Model.IO;
|
||||
using MediaBrowser.Providers.Manager;
|
||||
using MediaBrowser.Providers.TV.TheTVDB;
|
||||
using MediaBrowser.Providers.Plugins.TheTvdb;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace MediaBrowser.Providers.TV
|
||||
@@ -17,7 +17,7 @@ namespace MediaBrowser.Providers.TV
|
||||
public class SeriesMetadataService : MetadataService<Series, SeriesInfo>
|
||||
{
|
||||
private readonly ILocalizationManager _localization;
|
||||
private readonly TvDbClientManager _tvDbClientManager;
|
||||
private readonly TvdbClientManager _tvdbClientManager;
|
||||
|
||||
public SeriesMetadataService(
|
||||
IServerConfigurationManager serverConfigurationManager,
|
||||
@@ -26,11 +26,11 @@ namespace MediaBrowser.Providers.TV
|
||||
IFileSystem fileSystem,
|
||||
ILibraryManager libraryManager,
|
||||
ILocalizationManager localization,
|
||||
TvDbClientManager tvDbClientManager)
|
||||
TvdbClientManager tvdbClientManager)
|
||||
: base(serverConfigurationManager, logger, providerManager, fileSystem, libraryManager)
|
||||
{
|
||||
_localization = localization;
|
||||
_tvDbClientManager = tvDbClientManager;
|
||||
_tvdbClientManager = tvdbClientManager;
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
@@ -47,7 +47,7 @@ namespace MediaBrowser.Providers.TV
|
||||
LibraryManager,
|
||||
_localization,
|
||||
FileSystem,
|
||||
_tvDbClientManager);
|
||||
_tvdbClientManager);
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user