diff --git a/jami-android/libjamiclient/src/main/kotlin/net/jami/services/CallService.kt b/jami-android/libjamiclient/src/main/kotlin/net/jami/services/CallService.kt
index 2569a7fc9b3021611d9872f0ee99f1b4249076ee..072154183317bdfae195f8488f0606678c12ca5b 100644
--- a/jami-android/libjamiclient/src/main/kotlin/net/jami/services/CallService.kt
+++ b/jami-android/libjamiclient/src/main/kotlin/net/jami/services/CallService.kt
@@ -678,7 +678,7 @@ abstract class CallService(
 
     fun getConference(id: String): Conference? = conferences[id]
 
-    fun conferenceCreated(accountId: String, confId: String) {
+    fun conferenceCreated(accountId: String, conversationId: String, confId: String) {
         Log.d(TAG, "conference created: $confId")
         val conf = conferences.getOrPut(confId) { Conference(accountId, confId) }
         val participants = JamiService.getParticipantList(accountId, confId)
diff --git a/jami-android/libjamiclient/src/main/kotlin/net/jami/services/DaemonService.kt b/jami-android/libjamiclient/src/main/kotlin/net/jami/services/DaemonService.kt
index 8dcc945a6df5fb9644c6fe8fe8bd78e669ea962e..8ae55619ddc3b979b8a232263595d5cac43a96ab 100644
--- a/jami-android/libjamiclient/src/main/kotlin/net/jami/services/DaemonService.kt
+++ b/jami-android/libjamiclient/src/main/kotlin/net/jami/services/DaemonService.kt
@@ -247,8 +247,8 @@ class DaemonService(
             mExecutor.submit { mCallService.incomingMessage(accountId, callId, from, jmessages) }
         }
 
-        override fun conferenceCreated(accountId: String, confId: String) {
-            mCallService.conferenceCreated(accountId, confId)
+        override fun conferenceCreated(accountId: String, conversationId: String, confId: String) {
+            mCallService.conferenceCreated(accountId, conversationId, confId)
         }
 
         override fun conferenceRemoved(accountId: String, confId: String) {