Fixes wrong parameter name.

This commit is contained in:
damencho 2017-07-17 17:26:47 -05:00
parent 72691eb2dc
commit 0cffbdb967
1 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ function handle_create_poltergeist (event)
local room = get_room(room_name, group); local room = get_room(room_name, group);
if (not room) then if (not room) then
log("error", "no room found %s", room_address); log("error", "no room found %s", room_name);
return 404; return 404;
end end
@ -202,7 +202,7 @@ function handle_update_poltergeist (event)
local room = get_room(room_name, group); local room = get_room(room_name, group);
if (not room) then if (not room) then
log("error", "no room found %s", room_address); log("error", "no room found %s", room_name);
return 404; return 404;
end end