We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a45042 commit 14e6915Copy full SHA for 14e6915
src/request_message_translator.cc
@@ -58,6 +58,9 @@ RequestMessageTranslator::RequestMessageTranslator(
58
writer_pipeline_(&proto_writer_),
59
output_delimiter_(output_delimiter),
60
finished_(false) {
61
+ // Relax Base64 decoding to support RFC 2045 Base64
62
+ proto_writer_.set_use_strict_base64_decoding(false);
63
+
64
// Create a RequestWeaver if we have variable bindings to weave
65
if (!request_info.variable_bindings.empty()) {
66
request_weaver_.reset(new RequestWeaver(
0 commit comments