浏览代码

Improved latency check default threshould

As mentioned in issue 263
Marcel Baumgartner 1 年之前
父节点
当前提交
87744e4846
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Moonlight/App/Configuration/ConfigV1.cs

+ 1 - 1
Moonlight/App/Configuration/ConfigV1.cs

@@ -24,7 +24,7 @@ public class ConfigV1
 
         [JsonProperty("LatencyCheckThreshold")]
         [Description("Specify the latency threshold which has to be reached in order to trigger the warning message")]
-        public int LatencyCheckThreshold { get; set; } = 500;
+        public int LatencyCheckThreshold { get; set; } = 1000;
 
         [JsonProperty("Auth")] public AuthData Auth { get; set; } = new();