mirror of
https://github.com/Kunsi/scheduled-plugin-pretalx-broadcast-tools.git
synced 2024-11-24 11:01:05 +00:00
correctly log found room name
This commit is contained in:
parent
b7e6ea2635
commit
025e1bf2c7
1 changed files with 1 additions and 1 deletions
2
tile.lua
2
tile.lua
|
@ -63,7 +63,7 @@ function M.updated_config_json(config)
|
||||||
for idx, room in ipairs(config.rooms) do
|
for idx, room in ipairs(config.rooms) do
|
||||||
log(tostring(room.serial) .. " room '" .. room.name .. "'")
|
log(tostring(room.serial) .. " room '" .. room.name .. "'")
|
||||||
if room.serial == sys.get_env "SERIAL" then
|
if room.serial == sys.get_env "SERIAL" then
|
||||||
log("found my room: ", room.name)
|
log("found my room: " .. room.name)
|
||||||
current_room = room.name
|
current_room = room.name
|
||||||
text_a = room.text_a
|
text_a = room.text_a
|
||||||
text_b = room.text_b
|
text_b = room.text_b
|
||||||
|
|
Loading…
Reference in a new issue