From 87744e4846ae29353efc1716ecc728940ecc673f Mon Sep 17 00:00:00 2001 From: Marcel Baumgartner Date: Tue, 15 Aug 2023 15:49:55 +0200 Subject: [PATCH] Improved latency check default threshould As mentioned in issue 263 --- Moonlight/App/Configuration/ConfigV1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moonlight/App/Configuration/ConfigV1.cs b/Moonlight/App/Configuration/ConfigV1.cs index 15c63409..5f9b1b32 100644 --- a/Moonlight/App/Configuration/ConfigV1.cs +++ b/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();