|
@@ -178,7 +178,7 @@ function handle_create_poltergeist (event)
|
178
|
178
|
|
179
|
179
|
local room = get_room(room_name, group);
|
180
|
180
|
if (not room) then
|
181
|
|
- log("error", "no room found %s", room_address);
|
|
181
|
+ log("error", "no room found %s", room_name);
|
182
|
182
|
return 404;
|
183
|
183
|
end
|
184
|
184
|
|
|
@@ -202,7 +202,7 @@ function handle_update_poltergeist (event)
|
202
|
202
|
|
203
|
203
|
local room = get_room(room_name, group);
|
204
|
204
|
if (not room) then
|
205
|
|
- log("error", "no room found %s", room_address);
|
|
205
|
+ log("error", "no room found %s", room_name);
|
206
|
206
|
return 404;
|
207
|
207
|
end
|
208
|
208
|
|