diff options
| author | herby2212 <12448284+herby2212@users.noreply.github.com> | 2023-10-21 11:49:01 +0200 |
|---|---|---|
| committer | herby2212 <12448284+herby2212@users.noreply.github.com> | 2023-10-21 11:49:01 +0200 |
| commit | 6c5a4a93ccdb7c6ca8b26c36505d0954a7c79300 (patch) | |
| tree | 085754c14669071b3db61f6cbc327851f01fcdc0 | |
| parent | 27ceee8b6c70570129b917d8467a3a5bb058eab4 (diff) | |
fix indentation after merge
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 2fb5fbd0b..fe92251e9 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -158,20 +158,20 @@ public class ServerConfiguration : BaseApplicationConfiguration /// <value>The remaining time in minutes.</value> public int MaxAudiobookResume { get; set; } = 5; - /// <summary> - /// Gets or sets the threshold in minutes after a inactive session gets closed automatically. - /// If set to 0 the check for inactive sessions gets disabled. - /// </summary> - /// <value>The close inactive session threshold in minutes. 0 to disable.</value> - public int InactiveSessionThreshold { get; set; } = 10; - - /// <summary> - /// Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed - /// Some delay is necessary with some items because their creation is not atomic. It involves the creation of several - /// different directories and files. - /// </summary> - /// <value>The file watcher delay.</value> - public int LibraryMonitorDelay { get; set; } = 60; + /// <summary> + /// Gets or sets the threshold in minutes after a inactive session gets closed automatically. + /// If set to 0 the check for inactive sessions gets disabled. + /// </summary> + /// <value>The close inactive session threshold in minutes. 0 to disable.</value> + public int InactiveSessionThreshold { get; set; } = 10; + + /// <summary> + /// Gets or sets the delay in seconds that we will wait after a file system change to try and discover what has been added/removed + /// Some delay is necessary with some items because their creation is not atomic. It involves the creation of several + /// different directories and files. + /// </summary> + /// <value>The file watcher delay.</value> + public int LibraryMonitorDelay { get; set; } = 60; /// <summary> /// Gets or sets the duration in seconds that we will wait after a library updated event before executing the library changed notification. |
