We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4bc6a commit 9ac96cdCopy full SHA for 9ac96cd
1 file changed
src/Ui/UiRequest.py
@@ -735,7 +735,7 @@ def actionWebsocket(self):
735
origin_host = origin.split("://", 1)[-1]
736
if origin_host != host and origin_host not in self.server.allowed_ws_origins:
737
ws.send(json.dumps({"error": "Invalid origin: %s" % origin}))
738
- return self.error403("Invalid origin: %s %s" % (origin, self.server.allowed_ws_origins))
+ return self.error403("Invalid origin: %s" % origin)
739
740
# Find site by wrapper_key
741
wrapper_key = self.get["wrapper_key"]
0 commit comments