diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2022-09-16 12:39:13 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2022-09-16 12:39:13 +0200 |
commit | 9e9904c79d85a2d9c403e92a63177a90924c44d0 (patch) | |
tree | 136dcbcf6b1940dfb0d1bf1db2d7c6a5d5947846 /src/mod_mix_pam.erl | |
parent | Container: Support ERL_DIST_PORT (diff) | |
parent | Adapt to change of mix_annotate type to boolean in roster_query (diff) |
Merge remote-tracking branch 'processone/pr/3905'
* processone/pr/3905:
Adapt to change of mix_annotate type to boolean in roster_query
Adapt to renaming of 'participant-id' from mix_roster_channel record
Update xmpp module
Diffstat (limited to 'src/mod_mix_pam.erl')
-rw-r--r-- | src/mod_mix_pam.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_mix_pam.erl b/src/mod_mix_pam.erl index 379ab3930..7bd6f2a71 100644 --- a/src/mod_mix_pam.erl +++ b/src/mod_mix_pam.erl @@ -226,7 +226,7 @@ get_mix_roster_items(Acc, {LUser, LServer}) -> subscription = both, ask = undefined, groups = [<<"Channels">>], - mix_channel = #mix_roster_channel{'participant-id' = Id} + mix_channel = #mix_roster_channel{participant_id = Id} } end, Channels); _ -> @@ -311,7 +311,7 @@ process_join_result(#iq{from = #jid{} = Channel, subscription = none, ask = undefined, groups = [], - mix_channel = #mix_roster_channel{'participant-id' = ID} + mix_channel = #mix_roster_channel{participant_id = ID} }), % send IQ result ChanID = make_channel_id(Channel, ID), |