You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhanced the verifyHCaptcha function to ensure proper encoding of the hCaptcha verification POST form body by utilizing strings.NewReader. This change improves the reliability of the request body serialization.
Bug Fixes
Resolved an issue by removing the redundant assignment of req.PostForm, streamlining the request preparation process and eliminating unnecessary code.
Technical Improvements
Updated the http.NewRequestWithContext function to directly incorporate the encoded form data into the request body, enhancing the clarity and efficiency of the code.
Adjusted import statements to include the strings package, facilitating the new functionality introduced in the verifyHCaptcha function.