diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2023-07-01 19:33:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-01 19:33:53 +0200 |
| commit | bfb7c60f726a3f076e86e22dbdb994506259cb57 (patch) | |
| tree | 4f6b892c2eeb7ec475c0f3fb54af58d05dc0e3d3 /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | eae92c5acce88de7826b4de698f3b78a67a427bb (diff) | |
| parent | 891e2495c94fdfb3464cd0bb42c9950d27e28e38 (diff) | |
Merge pull request #9447 from Bond-009/disablerealtimemonitor
Disable real time monitoring by default
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index ea45bf0ba..8bb2d3c02 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -2069,7 +2069,9 @@ namespace Emby.Server.Implementations.Library .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) |
