Browse Source

Fixes wrong parameter name.

j8
damencho 7 years ago
parent
commit
0cffbdb967
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      resources/prosody-plugins/mod_muc_poltergeist.lua

+ 2
- 2
resources/prosody-plugins/mod_muc_poltergeist.lua View File

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

Loading…
Cancel
Save