feat: replace outbound code with display name

This commit is contained in:
divocat
2025-10-26 16:07:28 +02:00
parent 8a29e176f2
commit 47457f2c27
2 changed files with 5 additions and 4 deletions

View File

@@ -3745,12 +3745,12 @@ async function runSectionsCheck() {
if (selectedProxyDelay) {
return {
success: true,
latency: `[${selectedOutbound?.code ?? ""}] ${selectedProxyDelay}ms`
latency: `[${selectedOutbound?.displayName ?? ""}] ${selectedProxyDelay}ms`
};
}
return {
success: false,
latency: `[${selectedOutbound?.code ?? ""}] ${_("Not responding")}`
latency: `[${selectedOutbound?.displayName ?? ""}] ${_("Not responding")}`
};
}
return {