From 2d9b48d00fd31aaa96676c82a054b2794493fbf9 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 25 Sep 2013 11:11:23 -0400 Subject: fixed ffprobe running over and over --- MediaBrowser.Controller/Session/SessionInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'MediaBrowser.Controller/Session') diff --git a/MediaBrowser.Controller/Session/SessionInfo.cs b/MediaBrowser.Controller/Session/SessionInfo.cs index ba6d3d0acd..dc934b70a3 100644 --- a/MediaBrowser.Controller/Session/SessionInfo.cs +++ b/MediaBrowser.Controller/Session/SessionInfo.cs @@ -83,7 +83,7 @@ namespace MediaBrowser.Controller.Session /// /// The name of the now viewing item. public string NowViewingItemName { get; set; } - + /// /// Gets or sets the now playing item. /// @@ -107,7 +107,7 @@ namespace MediaBrowser.Controller.Session /// /// true if this instance is muted; otherwise, false. public bool IsMuted { get; set; } - + /// /// Gets or sets the device id. /// @@ -139,7 +139,7 @@ namespace MediaBrowser.Controller.Session return WebSockets.Any(i => i.State == WebSocketState.Open); } - return (DateTime.UtcNow - LastActivityDate).TotalMinutes <= 5; + return (DateTime.UtcNow - LastActivityDate).TotalMinutes <= 10; } } -- cgit v1.2.3