From cd40d176c090aefa5c756a27772d432c6cbdc119 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 4 Dec 2017 15:45:17 +0100 Subject: [PATCH] Fixed java wrapper --- wrappers/java/jni.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/java/jni.mustache b/wrappers/java/jni.mustache index a6e855736..b79d18361 100644 --- a/wrappers/java/jni.mustache +++ b/wrappers/java/jni.mustache @@ -375,7 +375,7 @@ jobject Java_{{jni_package}}FactoryImpl_createCore(JNIEnv *env, jobject thiz, jo linphone_core_cbs_set_user_data(cbs, listener); linphone_core_cbs_set_transfer_state_changed(cbs, linphone_core_on_transfer_state_changed); - linphone_core_cbs_set_chat_room_instantiated(cbs, linphone_core_on_chat_room_instantiated); + linphone_core_cbs_set_chat_room_state_changed(cbs, linphone_core_on_chat_room_state_changed); linphone_core_cbs_set_friend_list_created(cbs, linphone_core_on_friend_list_created); linphone_core_cbs_set_subscription_state_changed(cbs, linphone_core_on_subscription_state_changed); linphone_core_cbs_set_call_log_updated(cbs, linphone_core_on_call_log_updated);