mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-30 03:14:22 +00:00
commit
35075a31a8
@ -219,8 +219,9 @@ class ServerPlaybackState:
|
|||||||
queriesArray = urlparse.parse_qsl(query)
|
queriesArray = urlparse.parse_qsl(query)
|
||||||
|
|
||||||
filtered = []
|
filtered = []
|
||||||
|
ignore_params = self.ignore_params or []
|
||||||
for p in queriesArray:
|
for p in queriesArray:
|
||||||
if p[0] not in self.ignore_params:
|
if p[0] not in ignore_params:
|
||||||
filtered.append(p)
|
filtered.append(p)
|
||||||
|
|
||||||
key = [
|
key = [
|
||||||
|
Loading…
Reference in New Issue
Block a user