mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-26 10:16:27 +00:00
commit
35075a31a8
@ -219,9 +219,10 @@ 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 = [
|
||||||
str(r.host),
|
str(r.host),
|
||||||
|
Loading…
Reference in New Issue
Block a user