Fix build failure on esp32-c3

This commit is contained in:
Josh Stewart 2023-12-07 22:46:08 +11:00
parent 6d739172f9
commit 3644d4b745
1 changed files with 1 additions and 1 deletions

View File

@ -897,7 +897,7 @@ void AsyncWebSocketClient::binary(AsyncWebSocketMessageBuffer * buffer)
IPAddress AsyncWebSocketClient::remoteIP() {
if(!_client) {
return IPAddress(0U);
return IPAddress((uint32_t)0);
}
return _client->remoteIP();
}