Fix serial bridge tee not wanted resolve

This commit is contained in:
Theo Arends 2022-11-12 15:03:42 +01:00
parent 50b0a983b2
commit b0dbe32f22
1 changed files with 2 additions and 1 deletions

View File

@ -73,7 +73,8 @@ void SerialBridgePrintf(PGM_P formatP, ...) {
va_end(arg);
if (data == nullptr) { return; }
SerialBridgeSerial->printf(data);
// SerialBridgeSerial->printf(data); // This resolves "MqttClientMask":"DVES_%06X" into "DVES_000002"
SerialBridgeSerial->print(data); // This does not resolve "DVES_%06X"
free(data);
}
#endif // USE_SERIAL_BRIDGE_TEE