-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Labels
Milestone
Description
This code in TableView wouldn't be necessary:
datasette/datasette/views/table.py
Lines 396 to 399 in 492f983
| # Ensure we don't drop anything with an empty value e.g. ?name__exact= | |
| args = MultiParams( | |
| urllib.parse.parse_qs(request.query_string, keep_blank_values=True) | |
| ) |
If that happened here instead:
datasette/datasette/utils/asgi.py
Lines 98 to 100 in 492f983
| @property | |
| def args(self): | |
| return MultiParams(parse_qs(qs=self.query_string)) |
Originally posted by @simonw in #1518 (comment)
Reactions are currently unavailable