fix: Fixes kick when allowners is enabled.

Broken after ab18fa7 which disallows the kick as the affiliation attribute is missing in kick iq that is sent.
This commit is contained in:
Дамян Минков 2021-10-19 22:51:35 -07:00
parent bc6e49754c
commit a5129ef291
1 changed files with 2 additions and 2 deletions

View File

@ -170,8 +170,8 @@ function filter_admin_set_query(event)
return nil; return nil;
end end
-- any revoking is disabled -- any revoking is disabled, everyone should be owners
if _aff ~= 'owner' then if _aff == 'none' or _aff == 'outcast' or _aff == 'member' then
origin.send(st.error_reply(stanza, "auth", "forbidden")); origin.send(st.error_reply(stanza, "auth", "forbidden"));
return true; return true;
end end