Skip to content

Commit

Permalink
Merge pull request #4189 from dosipod/0_15
Browse files Browse the repository at this point in the history
Extra comma in the network password fix
  • Loading branch information
willmmiles authored Oct 13, 2024
2 parents 1468ee5 + 01e07ca commit 85a7c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wled00/xml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ void getSettingsJS(byte subPage, Print& settingsScript)
char fpass[l+1]; //fill password field with ***
fpass[l] = 0;
memset(fpass,'*',l);
settingsScript.printf_P(PSTR("addWiFi(\"%s\",\",%s\",0x%X,0x%X,0x%X);"),
settingsScript.printf_P(PSTR("addWiFi(\"%s\",\"%s\",0x%X,0x%X,0x%X);"),
multiWiFi[n].clientSSID,
fpass,
(uint32_t) multiWiFi[n].staticIP, // explicit cast required as this is a struct
Expand Down

0 comments on commit 85a7c3c

Please sign in to comment.