Skip to content

Commit c0b121a

Browse files
committed
fix data is ni
1 parent 14a78d0 commit c0b121a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

waf.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ elseif PostCheck then
6969
return
7070
end
7171
for key, val in pairs(args) do
72-
if type(val) == "table" or val == false then
72+
if type(val) == "table" then
7373
data=table.concat(val, ", ")
7474
else
7575
data=val
7676
end
7777
if data and type(data) ~= "boolean" and body(data) then
78-
return true
78+
return true
7979
end
8080
end
8181
end

0 commit comments

Comments
 (0)