That's the next line of code after what I quoted:
"Parse the JSON data returned by the api"
data := NeoJSONReader fromString: response.
But, prior to the JSON parsing I was doing a couple of string replacements to patch up the data.�� The system I'm moving the data into doesn't accept accented characters or bullets, and it wants empty strings instead of nulls.
All the JSON stuff works fine.�� It's just the string operations with��copyReplaceAll:with: that aren't working as expected for some reason.
Or are you saying that the data I get from from asUrl retrieveContents is not a "proper string" and maybe that's why it's not working?