diff --git a/materialious/static/nodejs-android/index.js b/materialious/static/nodejs-android/index.js index c5140e69..e6a59d7f 100644 --- a/materialious/static/nodejs-android/index.js +++ b/materialious/static/nodejs-android/index.js @@ -103,9 +103,7 @@ function proxyRequest(clientReq, clientRes, parsedUrl, bodyChunks = [], redirect if (!clientRes.headersSent) { clientRes.writeHead(500, { 'Content-Type': 'text/plain' }); } - clientRes.end( - `Proxy error: ${err.message} ${rejectUnauthorized} rejectUnauthorized ${typeof rejectUnauthorized}` - ); + clientRes.end(`Proxy error: ${err.message}`); }); clientReq.on('aborted', () => proxyReq.destroy());