From 778b3cd6826068af7e85287952d887b67331b8c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9luchu?= Date: Mon, 1 Jun 2020 20:08:05 +0200 Subject: [PATCH] Force parse JSON MoreInfo --- src/api/routes/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/routes/index.js b/src/api/routes/index.js index 57be567..179ed49 100644 --- a/src/api/routes/index.js +++ b/src/api/routes/index.js @@ -174,7 +174,7 @@ router.get('/moreInfo/:title' , (req, res) =>{ .then(info =>{ if (info.length > 0) { res.status(200).json({ - info + info: JSON.parse(JSON.stringify(info)) }); } else { res.status(404) } }).catch((err) =>{