mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-01 04:34:26 -04:00
Disable real time monitoring by default
This commit is contained in:
parent
1244502fa8
commit
891e2495c9
@ -2054,7 +2054,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…
x
Reference in New Issue
Block a user