opendroneid / opendroneid-core-c

Open Drone ID Core C Library
Apache License 2.0
178 stars 64 forks source link

Quote all strings in pseudo-JSON dump #70

Closed twpayne closed 1 year ago

twpayne commented 1 year ago

drone_export_gps_data dumps a ODID_UAS_Data as JSON-ish object in a buffer. The generated JSON is not valid as it contains a number of unquoted strings and extra trailing commas.

This PR quotes the unquoted strings. Removing the extra trailing commas is for a separate PR.