diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-12-06 13:05:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-06 13:05:16 -0500 |
| commit | dd4839a1751608174f3dfa75ae760f6769498006 (patch) | |
| tree | 114954d11abbbfe69417da5e110dff92fb851809 /MediaBrowser.Model/Configuration/LibraryOptions.cs | |
| parent | 313a21a365422279791f33f7ceeb182f78123efb (diff) | |
| parent | 20c249979759a836f63a886a871db69ceaeb757e (diff) | |
Merge pull request #2332 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/Configuration/LibraryOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/LibraryOptions.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/LibraryOptions.cs b/MediaBrowser.Model/Configuration/LibraryOptions.cs index ffcb79cfb..e79253d19 100644 --- a/MediaBrowser.Model/Configuration/LibraryOptions.cs +++ b/MediaBrowser.Model/Configuration/LibraryOptions.cs @@ -14,6 +14,7 @@ public bool SaveLocalMetadata { get; set; } public bool EnableInternetProviders { get; set; } public bool ImportMissingEpisodes { get; set; } + public bool EnableAutomaticSeriesGrouping { get; set; } public LibraryOptions() { @@ -21,6 +22,7 @@ EnableRealtimeMonitor = true; PathInfos = new MediaPathInfo[] { }; EnableInternetProviders = true; + EnableAutomaticSeriesGrouping = true; } } |
