I forgot another line in cider.js whoops

This commit is contained in:
Enstrayed
2024-04-11 01:39:20 -07:00
parent 87272f9aa0
commit 7a5593607e

View File

@@ -13,6 +13,7 @@ app.get("/cider", (rreq,rres) => { // GET current listening from target
rres.sendStatus(503) // If there was a problem getting the upstream JSON, return 503 Service Unavailable.
} else {
rres.set("Access-Control-Allow-Origin","*") // Required (I think?) because of CORS.
currentListening = funcRes
rres.send(funcRes)
}
})