1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 14:11:59 +01:00

Merge pull request #141 from mrwish7/main

Don't output PI 0000 as filler on rds websocket
This commit is contained in:
Marek Farkaš
2025-04-22 21:23:31 +02:00
committed by GitHub

View File

@@ -354,7 +354,7 @@ function handleData(wss, receivedData, rdsWss) {
// error correction, but this is a good substitute.
errorsNew = (legacyRdsPiBuffer.length - 4) << 6;
} else {
pi = '0000';
pi = '----';
errorsNew = (0x03 << 6);
}