We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3073bf commit 2f0910dCopy full SHA for 2f0910d
src/command/handlers/ping/tcp-ping.ts
@@ -242,7 +242,7 @@ export function formatTcpPingResult (lines: Array<TcpPingData>): PingParseOutput
242
};
243
}
244
245
- const timings = probeData.filter(t => t.success).map(probe => ({
+ const timings = probeData.filter(t => t.success === true).map(probe => ({
246
rtt: roundNumber(probe.rtt, 2),
247
})).filter(t => !Number.isNaN(t.rtt));
248
0 commit comments