24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-04 21:27:16 +02:00

Fix mod_mix_mnesia get_participants/3 callback

This commit is contained in:
Evgeny Khramtsov 2018-12-07 20:41:37 +03:00
parent 6afefd7bbf
commit 4f5552128b

View File

@ -142,7 +142,7 @@ get_participants(_LServer, Channel, Service) ->
#mix_participant.chan_serv),
{ok, lists:map(
fun(#mix_participant{jid = JID, id = ID, nick = Nick}) ->
{ok, {JID, ID, Nick}}
{JID, ID, Nick}
end, Ret)}.
del_participant(_LServer, Channel, Service, JID) ->