mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
MUC: Adjust priorities of muc-get-default-role handlers (fixes #1272)
This commit is contained in:
parent
ee729847c3
commit
f281528c39
2 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ module:hook("muc-get-default-role", function(event)
|
||||||
if not event.affiliation and get_members_only(event.room) then
|
if not event.affiliation and get_members_only(event.room) then
|
||||||
return false;
|
return false;
|
||||||
end
|
end
|
||||||
end);
|
end, 2);
|
||||||
|
|
||||||
-- registration required for entering members-only room
|
-- registration required for entering members-only room
|
||||||
module:hook("muc-occupant-pre-join", function(event)
|
module:hook("muc-occupant-pre-join", function(event)
|
||||||
|
|
|
@ -61,7 +61,7 @@ module:hook("muc-get-default-role", function(event)
|
||||||
elseif event.affiliation_rank >= valid_affiliations.none then
|
elseif event.affiliation_rank >= valid_affiliations.none then
|
||||||
return "participant";
|
return "participant";
|
||||||
end
|
end
|
||||||
end);
|
end, -1);
|
||||||
|
|
||||||
--- Occupant functions
|
--- Occupant functions
|
||||||
function room_mt:new_occupant(bare_real_jid, nick)
|
function room_mt:new_occupant(bare_real_jid, nick)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue