Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

APPEND_DATA: malformed JSON #17

Closed
se38 opened this issue May 5, 2015 · 0 comments
Closed

APPEND_DATA: malformed JSON #17

se38 opened this issue May 5, 2015 · 0 comments
Assignees
Labels

Comments

@se38
Copy link
Owner

se38 commented May 5, 2015

If you create the JSON document with CREATE_DATA and append a structure with APPEND_DATA, the resulting JSON is malformed (two objects instead of one).

Wrong

{ 
  "f1": "v1", 
  "f2": "v2" 
}, 
"newstructure": { 
  "f3": "v2" 
}

Correct:

{ 
  "f1": "v1", 
  "f2": "v2" ,
  "newstructure": { 
    "f3": "v2" 
  }
}
@se38 se38 added the bug label May 5, 2015
@se38 se38 self-assigned this May 5, 2015
@se38 se38 added this to the zJSON Version 2.30 milestone May 5, 2015
@se38 se38 closed this as completed May 5, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant