Double-check

This commit is contained in:
number Zero 2018-01-10 20:10:52 +03:00
parent 4a55e3b056
commit e719ed60b8

View File

@ -550,7 +550,11 @@ local digiline = {
receptor = {},
effector = {
action = function(pos, node, channel, msg)
run(pos, {type = "digiline", channel = channel, msg = msg})
if (type(channel) ~= "string" and type(channel) ~= "number" and type(channel) ~= "boolean") then
return
end
local clean_msg = safe_deep_copy(msg, mesecon.setting("luacontroller_digiline_maxlen", 50000))
run(pos, {type = "digiline", channel = channel, msg = clean_msg})
end
}
}