"vscode:/vscode.git/clone" did not exist on "ebcd602480a1490a4e9b2d0de9f12d2598fbed64"
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): ...@@ -61,10 +61,10 @@ def proxy(path):
r = None r = None
del headers["Host"] headers.pop("Host", None)
del headers["Authorization"] headers.pop("Authorization", None)
del headers["Origin"] headers.pop("Origin", None)
del headers["Referer"] headers.pop("Referer", None)
print(headers) 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