diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2021-02-13 10:52:50 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-13 10:52:50 +0900 |
| commit | 542401c7f490493d202b45ebf7d89b33dae933c0 (patch) | |
| tree | 0edcb08a0a3031bdd0488c4a48c4c88e0e99dc25 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 0a8587295e85dca553dcb8167b98cc89d4443fa1 (diff) | |
| parent | 9fcdbd4c4b79560cb22f6f27182b4c36606dae79 (diff) | |
Merge pull request #5216 from jellyfin/remove-old-settings
remove deprecated settings from server config
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 0f0ad0f9a..ba55a2ace 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -418,8 +418,6 @@ namespace MediaBrowser.Model.Configuration public PathSubstitution[] PathSubstitutions { get; set; } = Array.Empty<PathSubstitution>(); - public bool EnableSimpleArtistDetection { get; set; } = false; - public string[] UninstalledPlugins { get; set; } = Array.Empty<string>(); /// <summary> @@ -461,10 +459,5 @@ namespace MediaBrowser.Model.Configuration /// Gets or sets a value indicating whether older plugins should automatically be deleted from the plugin folder. /// </summary> public bool RemoveOldPlugins { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether plugin image should be disabled. - /// </summary> - public bool DisablePluginImages { get; set; } } } |
