mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Trying to prevent the same intent to be processed twice, seems it can happen...
This commit is contained in:
parent
fb7d2d846a
commit
2d220dd01a
1 changed files with 5 additions and 0 deletions
|
|
@ -329,6 +329,11 @@ class MainActivity : GenericActivity(), SnackBarActivity, NavController.OnDestin
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Prevent this intent to be processed again
|
||||
intent.action = null
|
||||
intent.data = null
|
||||
intent.extras?.clear()
|
||||
}
|
||||
|
||||
private fun handleTelOrSipUri(uri: Uri) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue