arduino 3.0 adapt for tasmota <=2024.01.10, not compatble with new IP6Address

This commit is contained in:
MichaelDvP
2024-02-08 21:42:13 +01:00
parent 2b88fec2ee
commit 72b64a0c30
4 changed files with 7 additions and 7 deletions

View File

@@ -190,7 +190,7 @@ void AsyncEventSourceClient::_queueMessage(AsyncEventSourceMessage *dataMessage)
//length() is not thread-safe, thus acquiring the lock before this call..
_lockmq.lock();
if(_messageQueue.length() >= SSE_MAX_QUEUED_MESSAGES){
ets_printf(String(F("ERROR: Too many messages queued\n")).c_str());
// ets_printf(String(F("ERROR: Too many messages queued\n")).c_str());
delete dataMessage;
} else {
_messageQueue.add(dataMessage);