diff options
Diffstat (limited to 'src/api/routes')
-rw-r--r-- | src/api/routes/ping.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/routes/ping.ts b/src/api/routes/ping.ts index ff79399c..9bf8c243 100644 --- a/src/api/routes/ping.ts +++ b/src/api/routes/ping.ts @@ -23,7 +23,8 @@ router.get("/", route({}), (req: Request, res: Response) => { defaultApiVersion: api.defaultVersion ?? 9, apiEndpoint: api.endpointPublic ?? "/api", cdnEndpoint: cdn.endpointPublic ?? "/", - gatewayEndpoint: gateway.endpointPublic ?? "/", + gatewayEndpoint: + gateway.endpointPublic ?? "ws://localhost:3001", }, }, }); |