1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/synapse_ynh.git synced 2024-09-03 20:26:38 +02:00

Disable DTLS by default for call as it don't work well

This commit is contained in:
Josué Tille 2024-03-09 01:19:38 +01:00
parent 0b7649c42c
commit 3a1f0b13c9
No known key found for this signature in database
GPG key ID: 5F259226AD51F2F5
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ notif_for_new_users="true"
enable_group_creation="true"
push_include_content="true"
enable_3pid_lookup=false
enable_dtls_for_audio_video_turn_call=true
enable_dtls_for_audio_video_turn_call=false
if [ "$is_free_registration" -eq 0 ]
then

View file

@ -201,7 +201,7 @@ then
fi
if [ -z "${enable_dtls_for_audio_video_turn_call:-}" ]
then
enable_dtls_for_audio_video_turn_call="true"
enable_dtls_for_audio_video_turn_call=false
ynh_app_setting_set --app=$app --key=enable_dtls_for_audio_video_turn_call --value=$enable_dtls_for_audio_video_turn_call
fi