]> saetta.ns0.it Git - zakform/json/commitdiff
On load if no key fields returns the first array element. master
authorAndrea Zagli <azagli@libero.it>
Wed, 9 Sep 2020 13:57:12 +0000 (15:57 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 9 Sep 2020 13:57:12 +0000 (15:57 +0200)
src/form.c

index ecf05494a1f0775376831c66fafbe7534ac40b38..ad2b1d332bfa7a8b55687b0046c25564ef7378c6 100644 (file)
@@ -402,8 +402,14 @@ static JsonObject
 
        if (k < 1)
                {
+                       /* TODO add a property to make this behaviour variable */
                        /* no key fields */
-                       return NULL;
+                       /* returns the first record */
+                       ar = json_node_get_array (priv->root);
+                       jnode = json_array_get_element (ar, 0);
+                       obj = json_node_get_object (jnode);
+
+                       return obj;
                }
 
        ok = FALSE;