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 5e389f6 commit 5683966Copy full SHA for 5683966
src/GraphQLResponse.cpp
@@ -882,9 +882,7 @@ IdType Value::release<IdType>()
882
{
883
auto stringValue = std::move(stringData.string);
884
885
- return internal::Base64::validateBase64(stringValue)
886
- ? IdType { internal::Base64::fromBase64(stringValue) }
887
- : IdType { std::move(stringValue) };
+ return IdType { std::move(stringValue) };
888
}
889
890
else if (std::holds_alternative<IdType>(_data))
0 commit comments