mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Always return an ODict from get_query
This commit is contained in:
parent
d2f5db1f37
commit
a4270efaf2
@ -337,9 +337,9 @@ class Request(HTTPMsg):
|
||||
Gets the request query string. Returns an ODict object.
|
||||
"""
|
||||
_, _, _, _, query, _ = urlparse.urlparse(self.get_url())
|
||||
if not query:
|
||||
return []
|
||||
return ODict(utils.urldecode(query))
|
||||
if query:
|
||||
return ODict(utils.urldecode(query))
|
||||
return ODict([])
|
||||
|
||||
def set_query(self, odict):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user