Fix incorrect SET_F calls

Replace with F() or PSTR() as appropriate.
This commit is contained in:
Will Miles
2024-10-23 19:58:52 -04:00
parent 6d1126b8aa
commit b3b326738c
2 changed files with 5 additions and 5 deletions

View File

@@ -227,7 +227,7 @@ void getSettingsJS(byte subPage, Print& settingsScript)
sprintf(s, "%d.%d.%d.%d", localIP[0], localIP[1], localIP[2], localIP[3]);
#if defined(ARDUINO_ARCH_ESP32) && defined(WLED_USE_ETHERNET)
if (Network.isEthernet()) strcat_P(s ,SET_F(" (Ethernet)"));
if (Network.isEthernet()) strcat_P(s ,PSTR(" (Ethernet)"));
#endif
printSetClassElementHTML(settingsScript,PSTR("sip"),0,s);
} else