summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/routes/gateway.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/gateway.ts b/src/routes/gateway.ts

index 4c7ff450..b6c8f49f 100644 --- a/src/routes/gateway.ts +++ b/src/routes/gateway.ts
@@ -4,7 +4,7 @@ import Config from "../util/Config" const router = Router(); router.get("/", (req, res) => { - const { endpoint } = Config.getAll().gateway(); + const { endpoint } = Config.getAll().gateway; res.send({ url: endpoint || "ws://localhost:3002" }); });