We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57d6a4 commit 121a229Copy full SHA for 121a229
1 file changed
app.py
@@ -79,7 +79,7 @@ def middlewares():
79
token = auth_header.split(" ", 1)[1]
80
81
token = unquote(token)
82
-
+
83
if token != API_TOKEN:
84
infoLog(f"Client failed Bearer Auth [token: {token}]")
85
return UnauthorizedResponse()
@@ -123,8 +123,6 @@ def proxy(path):
123
124
targetURL = f"{SIGNAL_API_URL}/{path}{query_string}"
125
126
- infoLog(json.dumps(jsonData))
127
128
resp = requests.request(
129
method=method,
130
url=targetURL,
0 commit comments