Commit 8f2b691e authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix: headers issue

parent 0ae57b5a
......@@ -61,10 +61,10 @@ def proxy(path):
r = None
del headers["Host"]
del headers["Authorization"]
del headers["Origin"]
del headers["Referer"]
headers.pop("Host", None)
headers.pop("Authorization", None)
headers.pop("Origin", None)
headers.pop("Referer", None)
print(headers)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment