fix crash when "scroll_speed" is not a number

This commit is contained in:
OgelGames 2020-09-09 19:22:14 +10:00
父節點 31a938693a
當前提交 caf6e24d04
共有 1 個文件被更改,包括 1 次插入1 次删除

查看文件

@ -360,7 +360,7 @@ local on_digiline_receive_string = function(pos, node, channel, msg)
led_marquee.set_timer(pos, 0)
return
elseif string.sub(msg, 1, 12) == "scroll_speed" then
local timeout = tonumber(string.sub(msg, 13))
local timeout = tonumber(string.sub(msg, 13)) or 0
led_marquee.set_timer(pos, math.max(timeout, led_marquee.message_minimum_time))
elseif string.sub(msg, 1, 11) == "scroll_step" then
local skip = tonumber(string.sub(msg, 12))