Skip to content
Snippets Groups Projects
Commit 7131eb18 authored by syuilo's avatar syuilo
Browse files

fix(server): turnstile-failed: missing-input-secret

Fix #9726
parent 605b0f27
No related branches found
No related tags found
No related merge requests found
......@@ -23,9 +23,9 @@ export class CaptchaService {
const res = await this.httpRequestService.send(url, {
method: 'POST',
body: JSON.stringify(params),
body: params.toString(),
headers: {
'Content-Type': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded',
},
}, { throwErrorWhenResponseNotOk: false });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment