content-type

This commit is contained in:
Scott Anderson
2025-06-24 16:02:03 -04:00
parent 55cba1bdac
commit 260f5f7d28
+1 -1
View File
@@ -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);
}),
);