From e712f37d15bf5f0bcbe11ecb3fdd85788851e51a Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Wed, 2 Oct 2024 10:38:19 +0200 Subject: [PATCH] Force disable linphone_core_set_chat_messages_aggregation_enabled which could be disabled by installing 6.0 on same device --- Classes/LinphoneManager.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/LinphoneManager.m b/Classes/LinphoneManager.m index 53827d589..adef69ff2 100644 --- a/Classes/LinphoneManager.m +++ b/Classes/LinphoneManager.m @@ -1455,6 +1455,7 @@ void popup_link_account_cb(LinphoneAccountCreator *creator, LinphoneAccountCreat theLinphoneCore = linphone_factory_create_shared_core_with_config(factory, _configDb, NULL, [kLinphoneMsgNotificationAppGroupId UTF8String], true); linphone_core_enable_auto_iterate(theLinphoneCore, true); + linphone_core_set_chat_messages_aggregation_enabled(theLinphoneCore, false); linphone_core_add_callbacks(theLinphoneCore, cbs); [ConfigManager.instance setDbWithDb:_configDb];