diff --git a/CHANGELOG.md b/CHANGELOG.md index 9adf7ea4a..2cc330195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,6 @@ Group changes to describe their impact on the project, as follows: ### Changed - Switched Account Creator backend from XMLRPC to FlexiAPI, it now requires to be able to receive a push notification - Email account creation form is now only available if TELEPHONY feature is not available, not related to screen size anymore -- Account EXPIRES is now set to 1 month instead of 1 year for sip.linphone.org accounts - Replaced voice recordings file name by localized placeholder text, like for video conferences invitations - Decline incoming calls with Busy reason if there is at least another active call - Open keyboard when replying to a message if no text / file / voice record is pending diff --git a/app/src/main/assets/assistant_linphone_default_values b/app/src/main/assets/assistant_linphone_default_values index f42e3ef28..7a72cd0c8 100644 --- a/app/src/main/assets/assistant_linphone_default_values +++ b/app/src/main/assets/assistant_linphone_default_values @@ -8,7 +8,7 @@ sip:voip-metrics@sip.linphone.org;transport=tls 1 180 - 2629800 + 31536000 sip:?@sip.linphone.org <sip:sip.linphone.org;transport=tls> <sip:sip.linphone.org;transport=tls> diff --git a/app/src/main/java/org/linphone/core/CoreContext.kt b/app/src/main/java/org/linphone/core/CoreContext.kt index 22c11d43d..c80b6d605 100644 --- a/app/src/main/java/org/linphone/core/CoreContext.kt +++ b/app/src/main/java/org/linphone/core/CoreContext.kt @@ -498,7 +498,7 @@ class CoreContext( val params = account.params.clone() if (fiveOneMigrationRequired) { - val newExpire = 2629800 // 1 month + val newExpire = 31536000 // 1 year if (account.params.expires != newExpire) { Log.i( "[Context] Updating expire on account ${params.identityAddress?.asString()} from ${account.params.expires} to newExpire"