From 71911487a82f5be93d4c1e40d2846bda6d36514a Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Sat, 22 Apr 2023 18:38:36 -0600 Subject: [PATCH] WHOOPS AGAIN --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f8eb0bf..e7b1506 100644 --- a/index.js +++ b/index.js @@ -288,7 +288,7 @@ app.get("/api/levels/:id", async (req, res) => { } if (!row) return res.sendStatus(404) // Not found if (row) { - let output = rows; + let output = row; if (!output.tag) output.tag = "Unknown#0000"; return res.json(output); }