Comment by Elucalidavah
Comment by Elucalidavah 10 months ago
> "&" inside JSON strings but yours escapes it
What escaping of "&" inside JSON are you talking about? Some unholy mix of JSON and urlencode?
Comment by Elucalidavah 10 months ago
> "&" inside JSON strings but yours escapes it
What escaping of "&" inside JSON are you talking about? Some unholy mix of JSON and urlencode?
Ruby on Rails turns "&" into "\u0026".
See rails/rails, activesupport/lib/active_support/json/encoding.rb.