From a8b3fc33e114be183a51bbf1db33226c7aae6ed9 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 2 Jul 2021 16:57:06 +0000 Subject: [PATCH] Monitor: Forgot the `app.install(EnableCors())` --- src/eddn/Monitor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/eddn/Monitor.py b/src/eddn/Monitor.py index dc8150c..4c188d4 100644 --- a/src/eddn/Monitor.py +++ b/src/eddn/Monitor.py @@ -240,6 +240,7 @@ def main(): loadConfig() m = Monitor() m.start() + app.install(EnableCors()) app.run( host=Settings.MONITOR_HTTP_BIND_ADDRESS, port=Settings.MONITOR_HTTP_PORT,