aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/EntryPoints
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-21 17:31:21 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-06-21 17:31:21 -0400
commit95ac98d5d421b062b4f1467a988c10470427389d (patch)
treebced8f1f2e05f04bbe02cda29e1f5a041b2fb65c /MediaBrowser.Server.Startup.Common/EntryPoints
parent8bb10cb12f206aadb282d75cfb68dfca457fdc03 (diff)
update menus
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/EntryPoints')
-rw-r--r--MediaBrowser.Server.Startup.Common/EntryPoints/KeepServerAwake.cs2
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();
}