# HG changeset patch # User Kim Alvefur # Date 1649338751 -7200 # Node ID 1d231fb827d39d4f9cfd4b1c7287cacf9a4a9f02 # Parent f2c918fe8cf0b656deaaf0d16f3a2d6557399817 mod_rest/jsonmap: Fix indentation diff -r f2c918fe8cf0 -r 1d231fb827d3 mod_rest/jsonmap.lib.lua --- a/mod_rest/jsonmap.lib.lua Mon Apr 04 17:50:24 2022 +0200 +++ b/mod_rest/jsonmap.lib.lua Thu Apr 07 15:39:11 2022 +0200 @@ -552,8 +552,8 @@ for k, v in pairs(t) do local mapping = field_mappings[k]; if mapping and mapping.type == "func" and mapping.json2st then - s:add_child(mapping.json2st(v)):up(); - end + s:add_child(mapping.json2st(v)):up(); + end end s:reset();