ferreira-igor / micropython-wifi_manager

WiFi Manager for ESP8266 and ESP32 using MicroPython.
MIT License
50 stars 25 forks source link

Cant parse some characters in the password field #4

Closed Theraga closed 1 year ago

Theraga commented 2 years ago

I have noticed that if I include some special characters in the password (Like @ and + ) the connection attempt will be aborted. This is because only certain characters are replaced on line 215. Is it possible to include more characters?.

We used the solutions provided in the first post here: https://forum.micropython.org/viewtopic.php?t=3076 . Making a ton of replaces could also work but that doesn't look very elegant.

ferreira-igor commented 1 year ago

I have noticed that if I include some special characters in the password (Like @ and + ) the connection attempt will be aborted. This is because only certain characters are replaced on line 215. Is it possible to include more characters?.

We used the solutions provided in the first post here: https://forum.micropython.org/viewtopic.php?t=3076 . Making a ton of replaces could also work but that doesn't look very elegant.

Thanks for the tip!

The update is already implemented.