Updated links to captcha service.
This commit is contained in:
parent
0c9b295bfe
commit
9c2a1506d2
@ -47,9 +47,10 @@ async function getProcesses() {
|
||||
}
|
||||
}
|
||||
|
||||
// 127.0.0.1:19322
|
||||
async function getNewCaptcha() {
|
||||
try {
|
||||
return await fetch("http://127.0.0.1:19322/").then(r => r.text());
|
||||
return await fetch("http://startpage.arav.home.arpa/captcha/").then(r => r.text());
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
@ -59,7 +60,7 @@ async function solveCaptcha(id, answer) {
|
||||
try {
|
||||
let body = new URLSearchParams();
|
||||
body.append('answer', answer);
|
||||
let result = fetch(`http://127.0.0.1:19322/${id}`, { method: "POST", body: body } );
|
||||
let result = fetch(`http://startpage.arav.home.arpa/captcha/${id}`, { method: "POST", body: body } );
|
||||
return await result.then(r => {
|
||||
return r.status == 200;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user