ux(ice-test): clarify result when browser hides reflexive/relay candidates (Safari)
CodeQL Analysis / Analyze CodeQL (push) Has been cancelled
Deploy Application / deploy (push) Has been cancelled
Mirror to Codeberg / mirror (push) Has been cancelled
Mirror to PrivacyGuides / mirror (push) Has been cancelled

This commit is contained in:
lockbitchat
2026-06-16 01:50:40 -04:00
parent 6dac4ce52a
commit 9244250835
5 changed files with 16 additions and 14 deletions
+1 -1
View File
@@ -19387,7 +19387,7 @@ var IceServerSettings = ({ isOpen, onClose, initial, hasSaved, onApply, onForget
key: "res",
className: "ml-3 text-sm " + (testResult.error ? "text-red-400" : "text-secondary")
},
testResult.error ? `Test failed: ${testResult.error}` : `STUN ${testResult.srflx > 0 ? "OK" : "none"} \xB7 TURN ${testResult.relay > 0 ? "OK" : "none"} \xB7 host ${testResult.host}`
testResult.error ? `Test failed: ${testResult.error}` : testResult.srflx > 0 || testResult.relay > 0 ? `STUN ${testResult.srflx > 0 ? "OK" : "none"} \xB7 TURN ${testResult.relay > 0 ? "OK" : "none"} \xB7 host ${testResult.host}` : `host ${testResult.host} \xB7 this browser (e.g. Safari) hides STUN/TURN candidates from the test \u2014 your servers are still applied to real connections`
) : null
]));
}
+2 -2
View File
File diff suppressed because one or more lines are too long