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
When a user cancels the payment process using the SDK, the returned string is incorrectly decoded, replacing spaces with '+' signs. For example, the expected cancellation message "결제가 사용자에 의해 취소되었습니다" is returned as "결제가+사용자에+의해+취소되었습니다".
This issue appears to be an encoding problem where spaces are not correctly handled.
Suggested Fix
Investigate the method responsible for decoding the return string in the SDK's payment cancellation code.
Modify the decoding process to correctly interpret spaces, possibly by adjusting the encoding method or replacing '+' signs with spaces.
Below is a sample response for the mentioned issue which is sent via the following delegate
When a user cancels the payment process using the SDK, the returned string is incorrectly decoded, replacing spaces with '+' signs. For example, the expected cancellation message "결제가 사용자에 의해 취소되었습니다" is returned as "결제가+사용자에+의해+취소되었습니다".
This issue appears to be an encoding problem where spaces are not correctly handled.
Suggested Fix
Below is a sample response for the mentioned issue which is sent via the following delegate
Issue
The text was updated successfully, but these errors were encountered: