diff options
Diffstat (limited to 'src/mod_muc_room.erl')
-rw-r--r-- | src/mod_muc_room.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mod_muc_room.erl b/src/mod_muc_room.erl index 7c9bdd41..05a6ec4c 100644 --- a/src/mod_muc_room.erl +++ b/src/mod_muc_room.erl @@ -830,6 +830,8 @@ handle_info({captcha_failed, From}, normal_state, _ -> StateData end, {next_state, normal_state, NewState}; +handle_info(shutdown, _StateName, StateData) -> + {stop, shutdown, StateData}; handle_info(_Info, StateName, StateData) -> {next_state, StateName, StateData}. |