浏览代码

feat: Allow star for room in moderated tenants.

master
damencho 4 年前
父节点
当前提交
bf714c1c8b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      resources/prosody-plugins/mod_muc_allowners.lua

+ 1
- 1
resources/prosody-plugins/mod_muc_allowners.lua 查看文件

@@ -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

正在加载...
取消
保存