mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-25 07:08:11 +00:00
presence
This commit is contained in:
parent
3392c6f4e9
commit
fc06da72da
2 changed files with 10 additions and 5 deletions
|
|
@ -269,6 +269,15 @@ struct codec_name_pref_table codec_pref_table[] = {{"speex", 8000, "speex_8k_pre
|
|||
#endif
|
||||
}
|
||||
|
||||
// by default if handle_content_encoding is not set, we use plain text for debug purposes only
|
||||
if ([self lpConfigStringForKey:@"handle_content_encoding" inSection:@"misc"] == nil) {
|
||||
#ifdef DEBUG
|
||||
[self lpConfigSetString:@"none" forKey:@"handle_content_encoding" inSection:@"misc"];
|
||||
#else
|
||||
[self lpConfigSetString:@"conflate" forKey:@"handle_content_encoding" inSection:@"misc"];
|
||||
#endif
|
||||
}
|
||||
|
||||
[self migrateFromUserPrefs];
|
||||
}
|
||||
return self;
|
||||
|
|
|
|||
|
|
@ -48,12 +48,8 @@ sip_random_port=0
|
|||
#by default it is set to 30 by liblinphone
|
||||
history_max_size=-1
|
||||
|
||||
#whether SIP passwords are to be encrypted in configuration storage file
|
||||
#whether SIP passwords must be encrypted in configuration storage file
|
||||
store_ha1_passwd=0
|
||||
#handle_content_encoding=none
|
||||
|
||||
|
||||
|
||||
|
||||
[sound]
|
||||
dtmf_player_amp=0.007
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue