diff --git a/index.js b/index.js index 5630939c484b56b7b062a7938e45495a6ce2c35e..af8c018f36622662b198345f0e1ae93797b65ddf 100644 --- a/index.js +++ b/index.js @@ -727,9 +727,7 @@ app.get('/channels/:id', (req, res) => { res.send(client.channels.cache.get(id)); }) app.get('/mc/chat/:detail', (req, res) => { - console.log(req.headers); var detail = JSON.parse(decodeURI(req.params.detail)); - console.log(req.headers['server-type']); sendMessageFromMcChat(detail.username, detail.message, req.headers['server-type']); res.send("Envoyé!") })