Browse Source

feat: Allow star for room in moderated tenants.

master
damencho 4 years ago
parent
commit
bf714c1c8b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      resources/prosody-plugins/mod_muc_allowners.lua

+ 1
- 1
resources/prosody-plugins/mod_muc_allowners.lua View File

@@ -60,7 +60,7 @@ module:hook("muc-occupant-joined", function (event)
60 60
             return;
61 61
         end
62 62
 
63
-        if not (room_name == session.jitsi_meet_room) then
63
+        if not (room_name == session.jitsi_meet_room or session.jitsi_meet_room == '*') then
64 64
             module:log('debug', 'skip allowners for auth user and non matching room name: %s, jwt room name: %s', room_name, session.jitsi_meet_room);
65 65
             return;
66 66
         end

Loading…
Cancel
Save