You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JsonOptions.EscapeSolidus = True does not affect the json_keys since they are not encoded.
Only the json_values are encoded.
Am I missing something?
If not then I would suggest to modify the function ConvertToJson like this (changes are bold):
...
If json_PrettyPrint Then
json_Converted = vbNewLine & json_Indentation & """" & json_Encode(json_Key) & """: " & json_Converted
Else
json_Converted = """" & json_Encode(json_Key) & """:" & json_Converted
End If
...
The text was updated successfully, but these errors were encountered:
JsonOptions.EscapeSolidus = True does not affect the json_keys since they are not encoded.
Only the json_values are encoded.
Am I missing something?
If not then I would suggest to modify the function ConvertToJson like this (changes are bold):
...
If json_PrettyPrint Then
json_Converted = vbNewLine & json_Indentation & """" & json_Encode(json_Key) & """: " & json_Converted
Else
json_Converted = """" & json_Encode(json_Key) & """:" & json_Converted
End If
...
The text was updated successfully, but these errors were encountered: