Software /
code /
prosody
Diff
teal-src/util/datamapper.tl @ 11479:377a9eaf7bef
util.datamapper: Fix error on attempt to coerce nil to something
Turns falsy values into nil instead of nothing, which ensures this
function always has 1 return value, or table.insert({}) complains. Would
still happen on some unexpected input, but that's actually a good thing.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 23 Mar 2021 23:55:33 +0100 |
parent | 11476:83e127eb91f9 |
child | 11481:b2f9782497dd |
line wrap: on
line diff
--- a/teal-src/util/datamapper.tl Tue Mar 23 21:52:07 2021 +0100 +++ b/teal-src/util/datamapper.tl Tue Mar 23 23:55:33 2021 +0100 @@ -37,6 +37,7 @@ end local function totype(t : json_type_name, s : string) : any + if not s then return nil end if t == "string" then return s; elseif t == "boolean" then