瀏覽代碼

lowercase html links

Luke Pulverenti 12 年之前
父節點
當前提交
b0d1fc8674
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Server.Implementations/Library/UserManager.cs

+ 1 - 1
MediaBrowser.Server.Implementations/Library/UserManager.cs

@@ -77,7 +77,7 @@ namespace MediaBrowser.Server.Implementations.Library
         /// <value>The active connections.</value>
         /// <value>The active connections.</value>
         public IEnumerable<ClientConnectionInfo> RecentConnections
         public IEnumerable<ClientConnectionInfo> RecentConnections
         {
         {
-            get { return AllConnections.Where(c => (DateTime.UtcNow - c.LastActivityDate).TotalMinutes <= 10); }
+            get { return AllConnections.Where(c => (DateTime.UtcNow - c.LastActivityDate).TotalMinutes <= 5); }
         }
         }
 
 
         /// <summary>
         /// <summary>