danieleteti / delphimvcframework

DMVCFramework (for short) is a popular and powerful framework for WEB API in Delphi. Supports RESTful and JSON-RPC WEB APIs development.
Apache License 2.0
1.21k stars 346 forks source link

Fix crash caused by null value set as a nested record. #750

Closed rjantz2 closed 2 months ago

rjantz2 commented 2 months ago

Normal Example:

{
    "label": "test",
    "nested": {
        "inner": "inner text" 
    }
}

Problem Example:

{
    "label": "test",
    "nested": null
}