Updated CAPTCHA code.

This commit is contained in:
Alexander Andreev 2022-10-21 02:10:18 +04:00
parent b610105c3b
commit c1b056e22b
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ async function getProcesses() {
// 127.0.0.1:19322
async function getNewCaptcha() {
try {
return await fetch("http://startpage.arav.home.arpa/captcha/").then(r => r.text());
return await fetch("http://startpage.arav.home.arpa/captcha/", {method: "POST"}).then(r => r.text());
} catch {
return null;
}
@ -62,7 +62,7 @@ async function solveCaptcha(id, answer) {
body.append('answer', answer);
let result = fetch(`http://startpage.arav.home.arpa/captcha/${id}`, { method: "POST", body: body } );
return await result.then(r => {
return r.status == 200;
return r.status == 202;
});
} catch {
return false;