Merge pull request #272 from Moonlight-Panel/ImproveLatencyCheckThreshold

Improved latency check default threshould
This commit is contained in:
Marcel Baumgartner 2023-08-15 15:50:30 +02:00 committed by GitHub
commit 2db7748703
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();