store numeric message as a string in the master's meta

This commit is contained in:
Vanessa Dannenberg 2018-08-17 10:27:27 -04:00
parent 898a027a77
commit 10dcad8e06
1 changed files with 1 additions and 0 deletions

View File

@ -220,6 +220,7 @@ local on_digiline_receive_string = function(pos, node, channel, msg)
end
end
elseif msg and type(msg) == "number" then
meta:set_string("last_msg", tostring(msg))
led_marquee.display_msg(pos, channel, tostring(msg))
end
end