Merge pull request #9447 from Bond-009/disablerealtimemonitor

Disable real time monitoring by default
pull/8918/head
Claus Vium 2 years ago committed by GitHub
commit bfb7c60f72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2069,7 +2069,9 @@ namespace Emby.Server.Implementations.Library
.Find(folder => folder is CollectionFolder) as CollectionFolder; .Find(folder => folder is CollectionFolder) as CollectionFolder;
} }
return collectionFolder is null ? new LibraryOptions() : collectionFolder.GetLibraryOptions(); return collectionFolder is null
? new LibraryOptions()
: collectionFolder.GetLibraryOptions();
} }
public string GetContentType(BaseItem item) public string GetContentType(BaseItem item)

@ -20,7 +20,6 @@ namespace MediaBrowser.Model.Configuration
AutomaticallyAddToCollection = false; AutomaticallyAddToCollection = false;
EnablePhotos = true; EnablePhotos = true;
SaveSubtitlesWithMedia = true; SaveSubtitlesWithMedia = true;
EnableRealtimeMonitor = true;
PathInfos = Array.Empty<MediaPathInfo>(); PathInfos = Array.Empty<MediaPathInfo>();
EnableAutomaticSeriesGrouping = true; EnableAutomaticSeriesGrouping = true;
SeasonZeroDisplayName = "Specials"; SeasonZeroDisplayName = "Specials";

Loading…
Cancel
Save