mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-20 17:27:00 +01:00
* src/mod_muc/mod_muc_room.erl: Fixed bug with storing
affiliations of invited users in members-only room (thanks to Sergei Golovan) SVN Revision: 346
This commit is contained in:
parent
7cb79cd482
commit
a4507b8b6f
@ -1,5 +1,9 @@
|
||||
2005-05-09 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/mod_muc/mod_muc_room.erl: Fixed bug with storing
|
||||
affiliations of invited users in members-only room (thanks to
|
||||
Sergei Golovan)
|
||||
|
||||
* src/ejabberd_c2s.erl: Fixed starttls_required behaviour for
|
||||
legacy connections (thanks to Brian Campbell)
|
||||
|
||||
|
@ -249,6 +249,15 @@ normal_state({route, From, "",
|
||||
IJID,
|
||||
member,
|
||||
StateData),
|
||||
case (NSD#state.config)#config.persistent of
|
||||
true ->
|
||||
mod_muc:store_room(
|
||||
NSD#state.host,
|
||||
NSD#state.room,
|
||||
make_opts(NSD));
|
||||
_ ->
|
||||
ok
|
||||
end,
|
||||
{next_state, normal_state, NSD};
|
||||
_ ->
|
||||
{next_state, normal_state,
|
||||
|
Loading…
Reference in New Issue
Block a user