From 57501a6a8759ffdf366dee19d2c9d2275284a715 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Sun, 12 Jul 2020 05:17:28 -0500 Subject: [PATCH] Fix incompatibilities with bot client. --- server/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server/app.js b/server/app.js index 4236dce..857d399 100644 --- a/server/app.js +++ b/server/app.js @@ -35,6 +35,7 @@ app.get('/song/:songname', (req, res) => { if (error) { res.status(500).json(error.message) } else { + //console.log(req.params.songname+":"+JSON.stringify(results.rows)); res.status(200).json(results.rows) } })