We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1465657 commit bdc3e89Copy full SHA for bdc3e89
src/remote.ts
@@ -698,8 +698,18 @@ export class Remote {
698
derp_latency: { [key: string]: number }
699
upload_bytes_sec: number
700
download_bytes_sec: number
701
+ using_coder_connect: boolean
702
}) => {
703
let statusText = "$(globe) "
704
+
705
+ // Coder Connect doesn't populate any other stats
706
+ if (network.using_coder_connect) {
707
+ networkStatus.text = statusText + "Coder Connect "
708
+ networkStatus.tooltip = "You're connected using Coder Connect!"
709
+ networkStatus.show()
710
+ return
711
+ }
712
713
if (network.p2p) {
714
statusText += "Direct "
715
networkStatus.tooltip = "You're connected peer-to-peer ✨."
0 commit comments