This commit is contained in:
lilyissillyyy
2025-10-12 18:48:25 -04:00
parent 702651e7f9
commit 17f49c4aea
+1 -2
View File
@@ -89,7 +89,7 @@ class Akinator {
}
if (!correct && keepGoing) {
const params = new URLSearchParams();
params.append('step', this.currentStep.toString());
params.append('step', (this.currentStep + 1).toString());
params.append('sid', '1');
params.append('cm', this.childMode);
params.append('progression', this.progress);
@@ -100,7 +100,6 @@ class Akinator {
.post(`https://${this.region}.akinator.com/exclude`)
.send(params.toString(), true)
.set({
Accept: 'application/json',
'Content-Length': params.toString().length,
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
});