working..

This commit is contained in:
Martin Donnelly 2020-06-01 08:30:35 +01:00
parent d8ffebe181
commit 92acc646ec

View File

@ -249,11 +249,13 @@ function getUrlV2(req, res) {
'proxy' : 'http://uk.proxymesh.com:31280',
'tunnel' : true
}, (err, _res, body) => {
console.log(err);
console.log(body);
if (!err)
res.send(body);
else
res.send('');
res.send(err);
});
}