mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Fixed method called from main thread instead of core's one
This commit is contained in:
parent
3bfef64ef8
commit
2e86989c93
1 changed files with 3 additions and 1 deletions
|
|
@ -99,7 +99,9 @@ class CallsListFragment : GenericCallFragment() {
|
|||
|
||||
adapter.callClickedEvent.observe(viewLifecycleOwner) {
|
||||
it.consume { model ->
|
||||
model.togglePauseResume()
|
||||
coreContext.postOnCoreThread {
|
||||
model.togglePauseResume()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue