diff options
| author | Joe Rogers <1337joe@gmail.com> | 2021-12-16 00:37:01 +0100 |
|---|---|---|
| committer | Joe Rogers <1337joe@gmail.com> | 2021-12-16 00:52:18 +0100 |
| commit | dea5a3f3bcf24c1ddfa8fa672a39cf1be136c36d (patch) | |
| tree | 8fb096d367045b76c9ea68e825ca7f86ac4cf2e0 /MediaBrowser.Model | |
| parent | b5d4fdb56e59772b925d75cfe1c8ba691dbe1e77 (diff) | |
Deprecate LibraryOptions.EnableInternetProviders
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index ef049af4b..d3ce6aa7f 100644 --- a/MediaBrowser.Model/Configuration/LibraryOptions.cs +++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs @@ -21,7 +21,6 @@ namespace MediaBrowser.Model.Configuration SaveSubtitlesWithMedia = true; EnableRealtimeMonitor = true; PathInfos = Array.Empty<MediaPathInfo>(); - EnableInternetProviders = true; EnableAutomaticSeriesGrouping = true; SeasonZeroDisplayName = "Specials"; } @@ -38,6 +37,7 @@ namespace MediaBrowser.Model.Configuration public bool SaveLocalMetadata { get; set; } + [Obsolete("Disable remote providers in TypeOptions instead")] public bool EnableInternetProviders { get; set; } public bool EnableAutomaticSeriesGrouping { get; set; } |
