mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-05-01 19:12:57 +02:00
Correct packet sum for repeater error rate. Closes #225.
This commit is contained in:
@@ -99,7 +99,7 @@ export function TelemetryPane({
|
||||
{data.recv_errors.toLocaleString()}
|
||||
{data.packets_received > 0 && (
|
||||
<Secondary>
|
||||
({((data.recv_errors / data.packets_received) * 100).toFixed(2)}%)
|
||||
({((data.recv_errors / (data.packets_received + data.recv_errors)) * 100).toFixed(2)}%)
|
||||
</Secondary>
|
||||
)}
|
||||
</>
|
||||
|
||||
Reference in New Issue
Block a user