mirror of
https://github.com/liamcottle/reticulum-meshchat.git
synced 2026-04-27 16:10:32 +00:00
show which interface ping happened over
This commit is contained in:
parent
342eb166af
commit
907d3809b1
2 changed files with 4 additions and 0 deletions
|
|
@ -1196,6 +1196,7 @@ class ReticulumMeshChat:
|
|||
"rssi": rssi,
|
||||
"snr": snr,
|
||||
"quality": quality,
|
||||
"receiving_interface": str(receipt.proof_packet.receiving_interface),
|
||||
},
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -160,6 +160,9 @@ export default {
|
|||
info.push(`quality=${pingResult.quality}%`);
|
||||
}
|
||||
|
||||
// add receiving interface
|
||||
info.push(`via=${pingResult.receiving_interface}`);
|
||||
|
||||
// update ui
|
||||
this.addPingResult(info.join(" "));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue