This code in TableView wouldn't be necessary:
|
# 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:
|
@property |
|
def args(self): |
|
return MultiParams(parse_qs(qs=self.query_string)) |
Originally posted by @simonw in #1518 (comment)
This code in
TableViewwouldn't be necessary:datasette/datasette/views/table.py
Lines 396 to 399 in 492f983
If that happened here instead:
datasette/datasette/utils/asgi.py
Lines 98 to 100 in 492f983
Originally posted by @simonw in #1518 (comment)