farhan0581 / django-admin-autocomplete-filter

A simple Django app to render list filters in django admin using autocomplete widget.
GNU General Public License v3.0
351 stars 75 forks source link

Avoided failures when invalid URL parameters are encountered. #50

Closed jaredahern closed 3 years ago

jaredahern commented 3 years ago

I encountered a situation where another package added an ampersand directly after the question mark in the GET URL parameters (e.g. path/to/page/?&a=b). This lead to this package detecting a key with a name of "" and a value of undefined, which caused problems. This change is intended to avoid such problems.