From b4836b36ae0ce8aa2c51750be19a60c2d09c1d86 Mon Sep 17 00:00:00 2001 From: masterhc Date: Sat, 20 Jul 2024 17:27:37 +0100 Subject: [PATCH] Error Handling: Handle lack of credentials --- controller/api.js | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/controller/api.js b/controller/api.js index fc34533..2b8c704 100644 --- a/controller/api.js +++ b/controller/api.js @@ -493,11 +493,17 @@ exports.torrent = (bot)=> async function handleResponse(response) { - let headers = [...response.headers.entries()]; - headers = headers.filter(i=>i[0]=='set-cookie')[0][1] - return headers - - } + try { + let headers = [...response.headers.entries()]; + 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", { "headers": { "content-type": "application/x-www-form-urlencoded; charset=UTF-8", @@ -505,12 +511,7 @@ exports.torrent = (bot)=> }, "body": `value=true&hashes=${req.params.id}`, "method": "POST" - }); - - - - - + }); }); collector.on('end', async ()=> {