Fix: PI was not correctly send to Stationlist

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-06-19 21:40:03 +02:00
parent ebbe47da52
commit 185ee2ffeb

View File

@@ -2308,7 +2308,7 @@ void showPI() {
PIold = radio.rds.picode;
if (wifi) {
Udp.beginPacket(remoteip, 9030);
Udp.print("from=TEF tuner;PI=" + String(radio.rds.picode));
Udp.print("from=TEF tuner;PI=" + String(radio.rds.picode,4));
Udp.endPacket();
}
strcpy(radioIdPrevious, radio.rds.picode);