Skip to content

Commit

Permalink
fix post val false
Browse files Browse the repository at this point in the history
  • Loading branch information
loveshell committed Nov 18, 2014
1 parent 3b12567 commit 569e08a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion waf.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ elseif PostCheck then
return
end
for key, val in pairs(args) do
if type(val) == "table" then
if type(val) == "table" or val == false then
data=table.concat(val, ", ")
else
data=val
Expand Down

0 comments on commit 569e08a

Please sign in to comment.