We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when switching to UrlEncode mode from data containing plus signs (when interpreted as bytes) only the first sign is replaced with %2B correctly.
This is due to mistakenly using the standard one-time-replace function (why does that exist) instead of implementing a replaceAll function. Ref the below line: https://github.com/crashdemons/JXlate/blob/7b6c37976fe4928799586cdc6d97f297aeb3f5ab/src/js/xlate.js#L144
The text was updated successfully, but these errors were encountered:
261b3d2
crashdemons
No branches or pull requests
when switching to UrlEncode mode from data containing plus signs (when interpreted as bytes) only the first sign is replaced with %2B correctly.
This is due to mistakenly using the standard one-time-replace function (why does that exist) instead of implementing a replaceAll function. Ref the below line:
https://github.com/crashdemons/JXlate/blob/7b6c37976fe4928799586cdc6d97f297aeb3f5ab/src/js/xlate.js#L144
The text was updated successfully, but these errors were encountered: