Skip to content

Commit

Permalink
Potential fix for ESP8266 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thorrak committed May 7, 2024
1 parent a817d67 commit 3f7108c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LCBUrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,8 @@ IPAddress LCBUrl::getIP(const char *fqdn) // Return IP address of FQDN (helpful
{ // Host is an mDNS name
#ifdef LCBURL_MDNS
#ifdef ESP8266
int result = WiFi.hostByName(fqdn, &returnIP); // TODO: This is broken

int result = WiFi.hostByName(fqdn, returnIP); // TODO: This may be broken

if (result == 1)
{
Expand Down

0 comments on commit 3f7108c

Please sign in to comment.