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
+1 -1
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);
}