Fix pro ip adresu a ESP32 C3 target

This commit is contained in:
Pavel Brychta 2024-01-28 15:35:02 +01:00
parent 49caf9e414
commit ef9ccc6a14

View File

@ -798,7 +798,7 @@ void AsyncWebSocketClient::binary(const __FlashStringHelper *data, size_t len)
IPAddress AsyncWebSocketClient::remoteIP() const IPAddress AsyncWebSocketClient::remoteIP() const
{ {
if (!_client) if (!_client)
return IPAddress(0U); return IPAddress(0UL);
return _client->remoteIP(); return _client->remoteIP();
} }