diff options
author | Badlop <badlop@process-one.net> | 2022-09-01 12:53:24 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2022-09-01 13:02:54 +0200 |
commit | 808def7d32fc5fed40d982d26e6f0ff028a736c7 (patch) | |
tree | cf3b7ae7ae0b9c627e28fd03173ee549ba63a958 | |
parent | Add definition to detect OTP older than 25, used by ejabberd_auth_http (diff) |
The #roster_item.ask allowed values are subscribe|undefined
-rw-r--r-- | src/mod_shared_roster_ldap.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mod_shared_roster_ldap.erl b/src/mod_shared_roster_ldap.erl index 36ed63c97..ebcb77ab3 100644 --- a/src/mod_shared_roster_ldap.erl +++ b/src/mod_shared_roster_ldap.erl @@ -118,8 +118,7 @@ get_user_roster(Items, US) -> case dict:find(US1, SRUsers1) of {ok, GroupNames} -> {Item#roster_item{subscription = both, - groups = Item#roster_item.groups ++ GroupNames, - ask = none}, + groups = Item#roster_item.groups ++ GroupNames}, dict:erase(US1, SRUsers1)}; error -> {Item, SRUsers1} |