Error Handling: Handle lack of credentials

master
masterhc 9 months ago
parent f9aa08f7ad
commit b4836b36ae

@ -493,11 +493,17 @@ exports.torrent = (bot)=>
async function handleResponse(response) async function handleResponse(response)
{ {
let headers = [...response.headers.entries()]; try {
headers = headers.filter(i=>i[0]=='set-cookie')[0][1] let headers = [...response.headers.entries()];
return headers headers = headers.filter(i=>i[0]=='set-cookie')[0][1]
return headers
} catch (error) {
console.log(error)
return
}
} }
if(!cookie) return
await fetch("https://utorrent.wordfights.com/api/v2/torrents/setForceStart", { await fetch("https://utorrent.wordfights.com/api/v2/torrents/setForceStart", {
"headers": { "headers": {
"content-type": "application/x-www-form-urlencoded; charset=UTF-8", "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
@ -506,11 +512,6 @@ exports.torrent = (bot)=>
"body": `value=true&hashes=${req.params.id}`, "body": `value=true&hashes=${req.params.id}`,
"method": "POST" "method": "POST"
}); });
}); });
collector.on('end', async ()=> collector.on('end', async ()=>
{ {

Loading…
Cancel
Save