-
Bug
-
Resolution: Done
-
Major
-
2.0.15.Final
-
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.
- causes
-
WFLY-11639 mod_cluster and HTTP2 enabled (the default) not working
- Closed
- is cloned by
-
JBEAP-16439 (7.2.z) [UNDERTOW-1490] FlexBase64 doesn't use URL table for encoding ByteBuffer
- Closed