From 260f5f7d283f3df5c59de62fb73db47e4e8a1448 Mon Sep 17 00:00:00 2001 From: Scott Anderson <662325+scottanderson@users.noreply.github.com> Date: Tue, 24 Jun 2025 16:02:03 -0400 Subject: [PATCH] content-type --- src/server/Master.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/Master.ts b/src/server/Master.ts index 888c8c144..8d970f6f6 100644 --- a/src/server/Master.ts +++ b/src/server/Master.ts @@ -156,7 +156,7 @@ app.get( app.get( "/api/public_lobbies", gatekeeper.httpHandler(LimiterType.Get, async (req, res) => { - res.send(publicLobbiesJsonStr); + res.contentType("application/json").send(publicLobbiesJsonStr); }), );