diff options
| author | gnattu <gnattu@users.noreply.github.com> | 2024-05-06 09:21:44 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-05 19:21:44 -0600 |
| commit | 688a734895379c1bb452a4c5a292fbda85e7cc2e (patch) | |
| tree | 283cc92d6dc633ddf315c24a2dca5ac94ee7d19b | |
| parent | 6bdc7928e8b94b5f4b74b975e9c687a76565f375 (diff) | |
Don't close inactive session on default (#11491)
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index fe92251e9..52f7e53b8 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -163,7 +163,7 @@ public class ServerConfiguration : BaseApplicationConfiguration /// 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; + public int InactiveSessionThreshold { get; set; } /// <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 |
