Trying to prevent the same intent to be processed twice, seems it can happen...

This commit is contained in:
Sylvain Berfini 2022-02-14 09:21:32 +01:00
parent 359645dc4e
commit 2794147fd7

View file

@ -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) {