[fix](trx-rds,trx-backend-soapysdr,trx-frontend-http): relax rds filtering

Co-authored-by: Codex <codex@openai.com>
Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
2026-02-28 12:26:11 +01:00
parent 778e695941
commit 017b7be8a8
3 changed files with 5 additions and 16 deletions
@@ -3210,9 +3210,10 @@ function clearSpectrumCanvas() {
}
function formatOverlayPs(ps) {
const raw = String(ps ?? "").slice(0, 8);
const leadingBlanks = raw.match(/^ */)?.[0].length ?? 0;
return `${"_".repeat(leadingBlanks)}${raw.slice(leadingBlanks)}`.padEnd(8, "_");
return String(ps ?? "")
.slice(0, 8)
.padEnd(8, "_")
.replaceAll(" ", "_");
}
function formatOverlayPi(pi) {