You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I edit the list of SSID and I make a name exactly 32 characters long, plus one more for the \n at the end, the resulting SSID shown in the WiFi client is truncated - the last one character is not displayed.
Here is an example SSID: "12345678901234567890123456789012\n"
I searched the source code and found that I was able to fix this issue by changing this line:
Original code:
} while (tmp != '\n' && j < 32 && i + j < ssidsLen);
New code:
} while (tmp != '\n' && j < 33 && i + j < ssidsLen);
The text was updated successfully, but these errors were encountered:
When I edit the list of SSID and I make a name exactly 32 characters long, plus one more for the \n at the end, the resulting SSID shown in the WiFi client is truncated - the last one character is not displayed.
Here is an example SSID: "12345678901234567890123456789012\n"
I searched the source code and found that I was able to fix this issue by changing this line:
Original code:
} while (tmp != '\n' && j < 32 && i + j < ssidsLen);
New code:
} while (tmp != '\n' && j < 33 && i + j < ssidsLen);
The text was updated successfully, but these errors were encountered: