From 8a6bb2efd5a45001a31be744f920986b0b5dcc96 Mon Sep 17 00:00:00 2001 From: bingus_violet Date: Sun, 21 Apr 2024 13:12:50 -0500 Subject: [PATCH] Fix spincheck crash --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2e57576..28257c2 100644 --- a/index.js +++ b/index.js @@ -58,7 +58,7 @@ app.get("/v1/lanyard", (req, res) => { }) app.get("/v1/spins", (req, res) => { - res.send(violetSpins) + res.send(violetSpins.toString()) }) // app.listen(PORT, () => {