mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Fixes wrong parameter name.
This commit is contained in:
@@ -178,7 +178,7 @@ function handle_create_poltergeist (event)
|
||||
|
||||
local room = get_room(room_name, group);
|
||||
if (not room) then
|
||||
log("error", "no room found %s", room_address);
|
||||
log("error", "no room found %s", room_name);
|
||||
return 404;
|
||||
end
|
||||
|
||||
@@ -202,7 +202,7 @@ function handle_update_poltergeist (event)
|
||||
|
||||
local room = get_room(room_name, group);
|
||||
if (not room) then
|
||||
log("error", "no room found %s", room_address);
|
||||
log("error", "no room found %s", room_name);
|
||||
return 404;
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user