diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-06-27 05:58:07 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-27 05:58:07 +0900 |
| commit | 9a44e2912eb09bd1c19b7aa65403a59eee107c0b (patch) | |
| tree | 6dce065864018f3fdc82271e9850761d3aa15056 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 73da8df4bf59ccdf6debbe6e109760bde2cd7e54 (diff) | |
| parent | 83ae4d074dc9f665c992eefd1cf4ed78eb5a8dd1 (diff) | |
Merge pull request #3455 from jellyfin/values
Use constructor to set optimal config values
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index b87c8fbab..bb4ca34fd 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -82,8 +82,6 @@ namespace MediaBrowser.Model.Configuration public bool EnableRemoteAccess { get; set; } - public bool CollectionsUpgraded { get; set; } - /// <summary> /// Gets or sets a value indicating whether [enable case sensitive item ids]. /// </summary> @@ -269,6 +267,7 @@ namespace MediaBrowser.Model.Configuration PathSubstitutions = Array.Empty<PathSubstitution>(); IgnoreVirtualInterfaces = false; EnableSimpleArtistDetection = false; + SkipDeserializationForBasicTypes = true; DisplaySpecialsWithinSeasons = true; EnableExternalContentInSuggestions = true; @@ -282,6 +281,9 @@ namespace MediaBrowser.Model.Configuration EnableHttps = false; EnableDashboardResponseCaching = true; EnableCaseSensitiveItemIds = true; + EnableNormalizedItemByNameIds = true; + DisableLiveTvChannelUserDataName = true; + EnableNewOmdbSupport = true; AutoRunWebApp = true; EnableRemoteAccess = true; |
