fix table concat bug

pull/71/head
loveshell 2015-10-28 13:51:45 +08:00
parent f609d3296d
commit fa5bf74cbe
1 changed files with 3 additions and 0 deletions

View File

@ -70,6 +70,9 @@ elseif PostCheck then
end
for key, val in pairs(args) do
if type(val) == "table" then
if type(val[1]) == "boolean" then
return
end
data=table.concat(val, ", ")
else
data=val