Commit 78ee8bbd authored by Pierre Ynard's avatar Pierre Ynard

luahttp: make rounding function resilient to strings

Because somehow strings are used to represent decimals...

Fixes #6815
parent b59a7716
...@@ -31,7 +31,13 @@ local dkjson = require ("dkjson") ...@@ -31,7 +31,13 @@ local dkjson = require ("dkjson")
--Round the number to the specified precision --Round the number to the specified precision
function round(what, precision) function round(what, precision)
if what then return math.floor(what*math.pow(10,precision)+0.5) / math.pow(10,precision) else return "" end if type(what) == "string" then
what = common.us_tonumber(what)
end
if type(what) == "number" then
return math.floor(what*math.pow(10,precision)+0.5) / math.pow(10,precision)
end
return nil
end end
--split text where it matches the delimiter --split text where it matches the delimiter
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment