We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1b2c7d commit 8fbbff0Copy full SHA for 8fbbff0
App/ViewModels/AgentViewModel.cs
@@ -242,17 +242,17 @@ public string ConnectionTooltip
242
"""
243
);
244
}
245
- else if (PreferredDerpLatency != null)
+ else if (Latency != null)
246
{
247
description.Append($"""
248
You're connected through a DERP relay. {highLatencyWarning}
249
We'll switch over to peer-to-peer when available.
250
251
- Total latency: {PreferredDerpLatency.Value.Milliseconds} ms
+ Total latency: {Latency.Value.Milliseconds} ms
252
253
254
255
- if (PreferredDerp != null && Latency != null)
+ if (PreferredDerpLatency != null)
256
257
description.Append($"\nYou ↔ {PreferredDerp}: {PreferredDerpLatency.Value.Milliseconds} ms");
258
0 commit comments