From: Holger Weiss Date: Tue, 19 Aug 2014 09:12:51 +0000 (+0200) Subject: Store persistent MUC room during creation X-Git-Tag: 14.12~75^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7274dafe10459ec6eb004e9126b899db59f9b68f;p=ejabberd Store persistent MUC room during creation Make sure persistent rooms are stored to the database. Without this change, a room got lost if the 'persistent' flag was handed over to mod_muc:create_room/5 and the server was then restartet before any activity took place in that room. --- diff --git a/src/mod_muc_room.erl b/src/mod_muc_room.erl index 3842fde40..6a2a91d21 100644 --- a/src/mod_muc_room.erl +++ b/src/mod_muc_room.erl @@ -127,6 +127,13 @@ init([Host, ServerHost, Access, Room, HistorySize, RoomShaper, Creator, _Nick, D just_created = true, room_shaper = Shaper}), State1 = set_opts(DefRoomOpts, State), + if (State1#state.config)#config.persistent -> + mod_muc:store_room(State1#state.server_host, + State1#state.host, + State1#state.room, + make_opts(State1)); + true -> ok + end, ?INFO_MSG("Created MUC room ~s@~s by ~s", [Room, Host, jlib:jid_to_string(Creator)]), add_to_log(room_existence, created, State1),