Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.

SRP_JSON fix in v2.1.7

This release also fixes an oversight in SRP_Json in which object keys were not getting properly escaped.

What was the issue here? We've just widely deployed v2.1.6 so just want to check what the conditions are.

Comments

  • The following code:
    If SRP_Json(ObjHandle, "New") then SRP_Json(ObjHandle, "SetValue", 'How "are" you', 'Just "fine" I say') Ans = SRP_Json(ObjHandle, "Stringify", "FAST") SRP_Json(ObjHandle, "Release") end
    Should produce this:
    {"How \"are\" you":"Just \"fine\" I say"}
    but it was producing this:
    {"How "are" you":"Just \"fine\" I say"}
    It was escaping values, but not keys.
  • Ah, I see - thanks. That shouldn't affect us :)
Sign In or Register to comment.