Skip to content
Snippets Groups Projects
Commit 16d9a0a4 authored by Vitalii Nikitchyn's avatar Vitalii Nikitchyn
Browse files

update for new daemon API

Change-Id: I4b4b14c7fd3ff977838a370088c9617e46eee6a2
parent cf4809a1
No related branches found
No related tags found
No related merge requests found
...@@ -678,7 +678,7 @@ abstract class CallService( ...@@ -678,7 +678,7 @@ abstract class CallService(
fun getConference(id: String): Conference? = conferences[id] 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") Log.d(TAG, "conference created: $confId")
val conf = conferences.getOrPut(confId) { Conference(accountId, confId) } val conf = conferences.getOrPut(confId) { Conference(accountId, confId) }
val participants = JamiService.getParticipantList(accountId, confId) val participants = JamiService.getParticipantList(accountId, confId)
......
...@@ -247,8 +247,8 @@ class DaemonService( ...@@ -247,8 +247,8 @@ class DaemonService(
mExecutor.submit { mCallService.incomingMessage(accountId, callId, from, jmessages) } mExecutor.submit { mCallService.incomingMessage(accountId, callId, from, jmessages) }
} }
override fun conferenceCreated(accountId: String, confId: String) { override fun conferenceCreated(accountId: String, conversationId: String, confId: String) {
mCallService.conferenceCreated(accountId, confId) mCallService.conferenceCreated(accountId, conversationId, confId)
} }
override fun conferenceRemoved(accountId: String, confId: String) { override fun conferenceRemoved(accountId: String, confId: String) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment