diff --git a/oml/websocket.py b/oml/websocket.py index eeac42b..3740994 100644 --- a/oml/websocket.py +++ b/oml/websocket.py @@ -19,7 +19,12 @@ class Handler(WebSocketHandler): def check_origin(self, origin): # allow access to websocket from site, installer and loader (local file) return self.request.host in origin or \ - origin in ('http://127.0.0.1:9842', 'null', 'file:///') + origin in ( + 'http://127.0.0.1:9841', + 'http://127.0.0.1:9842', + 'file:///', + 'null' + ) def open(self): if self.request.headers['origin'] not in ('null', 'http://127.0.0.1:9842') \