diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-21 17:31:21 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-06-21 17:31:21 -0400 |
| commit | 95ac98d5d421b062b4f1467a988c10470427389d (patch) | |
| tree | bced8f1f2e05f04bbe02cda29e1f5a041b2fb65c /MediaBrowser.Server.Startup.Common/EntryPoints | |
| parent | 8bb10cb12f206aadb282d75cfb68dfca457fdc03 (diff) | |
update menus
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/EntryPoints')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/EntryPoints/KeepServerAwake.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Startup.Common/EntryPoints/KeepServerAwake.cs b/MediaBrowser.Server.Startup.Common/EntryPoints/KeepServerAwake.cs index 1651dfae22..ba335868d3 100644 --- a/MediaBrowser.Server.Startup.Common/EntryPoints/KeepServerAwake.cs +++ b/MediaBrowser.Server.Startup.Common/EntryPoints/KeepServerAwake.cs @@ -27,7 +27,7 @@ namespace MediaBrowser.Server.Startup.Common.EntryPoints _timer = new Timer(obj => { var now = DateTime.UtcNow; - if (_sessionManager.Sessions.Any(i => (now - i.LastActivityDate).TotalMinutes < 5)) + if (_sessionManager.Sessions.Any(i => (now - i.LastActivityDate).TotalMinutes < 15)) { KeepAlive(); } |
