24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-18 22:15:20 +02:00

Fix setting 'description' with change_room_option command (#567)

This commit is contained in:
Badlop 2015-05-12 17:37:39 +02:00
parent eca3b46ee1
commit d885435552

View File

@ -785,6 +785,7 @@ change_option(Option, Value, Config) ->
allow_query_users -> Config#config{allow_query_users = Value};
allow_user_invites -> Config#config{allow_user_invites = Value};
anonymous -> Config#config{anonymous = Value};
description -> Config#config{description = Value};
logging -> Config#config{logging = Value};
max_users -> Config#config{max_users = Value};
members_by_default -> Config#config{members_by_default = Value};