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
I'm working on queuing MQTT messages in the absence of internet and I ran into a problem writing a file to disk, my input is
{"three":2,"two":2,"one":2}
when I use function json_vfprintf
the data stored on the disk looks like this
{""three"":1,""two"":1,""one"":1}
which is incompatible with JSON
Is it possible to call the function so that it doesn't add another " to the JSON or in somehow delete extra " from file ?
The text was updated successfully, but these errors were encountered:
Hello
I'm working on queuing MQTT messages in the absence of internet and I ran into a problem writing a file to disk, my input is
{"three":2,"two":2,"one":2}
when I use function json_vfprintf
the data stored on the disk looks like this
{""three"":1,""two"":1,""one"":1}
which is incompatible with JSON
Is it possible to call the function so that it doesn't add another " to the JSON or in somehow delete extra " from file ?
The text was updated successfully, but these errors were encountered: