Skip to content
Snippets Groups Projects
Commit dbb4746e authored by Adrien Béraud's avatar Adrien Béraud
Browse files

swarm calls: use proper conversation Uri

GitLab: #1704
Change-Id: I98f8ca103076e0fb23b7ea83073216f1ca9b836f
parent 1c115682
No related branches found
No related tags found
No related merge requests found
...@@ -92,7 +92,7 @@ class AccountService( ...@@ -92,7 +92,7 @@ class AccountService(
data class ConversationActiveCalls( data class ConversationActiveCalls(
val accountId: String, val accountId: String,
val conversationId: String, val conversationUri: Uri,
val activeCalls: List<Conversation.ActiveCall> val activeCalls: List<Conversation.ActiveCall>
) )
...@@ -1059,7 +1059,7 @@ class AccountService( ...@@ -1059,7 +1059,7 @@ class AccountService(
activeCallsSubject.onNext( activeCallsSubject.onNext(
ConversationActiveCalls( ConversationActiveCalls(
accountId, accountId,
conversationId, Uri(Uri.SWARM_SCHEME, conversationId),
activeCallList activeCallList
) )
) )
......
...@@ -775,7 +775,7 @@ class ConversationFacade( ...@@ -775,7 +775,7 @@ class ConversationFacade(
mAccountService.activeCallsObservable.subscribe( mAccountService.activeCallsObservable.subscribe(
{ conversationActiveCall -> { conversationActiveCall ->
mAccountService.getAccount(accountId = conversationActiveCall.accountId) mAccountService.getAccount(accountId = conversationActiveCall.accountId)
?.getByUri(uri = conversationActiveCall.conversationId) ?.getByUri(conversationActiveCall.conversationUri)
?.let { ?.let {
mNotificationService.showGroupCallNotification( mNotificationService.showGroupCallNotification(
conversation = it, conversation = it,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment