diff options
| author | Bond_009 <bond.009@outlook.com> | 2023-03-07 17:58:04 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2023-03-07 17:59:29 +0100 |
| commit | 891e2495c94fdfb3464cd0bb42c9950d27e28e38 (patch) | |
| tree | 62f16a15088ede8404261de4f724deece4d14b0d /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | 1244502fa859ba58c8a2129e87036c11a60748e4 (diff) | |
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 66bd68ddd..c089bdce1 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -2054,7 +2054,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) |
