TeskaLabs / seacat-auth

SeaCat Auth provides authentication, authorization, identity management, session management and other access control features.
GNU General Public License v3.0
11 stars 6 forks source link

Properly parse URL query before adding new parameters #393

Closed byewokko closed 3 weeks ago

byewokko commented 3 weeks ago

Issue

The function generic.add_params_to_url_query parses URLs with query incorrectly with list values, resulting e.g. in http://localhost:8080/login?param=['test'] instead of http://localhost:8080/login?param=test.

Solution