make room participants list private when continuing a conversation. Fixes #4102
This commit is contained in:
parent
32a686e6c4
commit
31b3c543ec
|
@ -1305,6 +1305,8 @@ class Interface:
|
||||||
f.value = False
|
f.value = False
|
||||||
elif f.var == 'muc#roomconfig_membersonly':
|
elif f.var == 'muc#roomconfig_membersonly':
|
||||||
f.value = True
|
f.value = True
|
||||||
|
elif f.var == 'public_list':
|
||||||
|
f.value = False
|
||||||
gajim.connections[account].send_gc_config(room_jid, form)
|
gajim.connections[account].send_gc_config(room_jid, form)
|
||||||
else:
|
else:
|
||||||
# use default configuration
|
# use default configuration
|
||||||
|
|
Loading…
Reference in New Issue