-
Bug
-
Resolution: Done
-
Major
-
None
-
None
When debugging issue WFLY-11639 I found a bug in the FlexBase64 encoder on line 264.
The code is:
public static String encodeStringURL(ByteBuffer source, boolean wrap) { return Encoder.encodeString(source, wrap, false); }
But should be:
public static String encodeStringURL(ByteBuffer source, boolean wrap) { return Encoder.encodeString(source, wrap, true); }
I'll send a pull request.
- clones
-
UNDERTOW-1490 FlexBase64 doesn't use URL table for encoding ByteBuffer
- Resolved
- is incorporated by
-
JBEAP-15869 (7.2.z) Upgrade Undertow from 2.0.15 to 2.0.19
- Closed