MUC: Adjust priorities of muc-get-default-role handlers (fixes #1272)

This commit is contained in:
Matthew Wild 2018-12-19 23:14:13 +00:00
parent ee729847c3
commit f281528c39
2 changed files with 2 additions and 2 deletions

View file

@ -104,7 +104,7 @@ module:hook("muc-get-default-role", function(event)
if not event.affiliation and get_members_only(event.room) then
return false;
end
end);
end, 2);
-- registration required for entering members-only room
module:hook("muc-occupant-pre-join", function(event)

View file

@ -61,7 +61,7 @@ module:hook("muc-get-default-role", function(event)
elseif event.affiliation_rank >= valid_affiliations.none then
return "participant";
end
end);
end, -1);
--- Occupant functions
function room_mt:new_occupant(bare_real_jid, nick)