mirror of
https://github.com/nextcloud/talk-android
synced 2025-07-10 06:14:10 +01:00
Merge pull request #3502 from nextcloud/bugfix/3491/fixErrorWhenDecliningRecConsent
avoid error when declining recording consent
This commit is contained in:
commit
8507e96bc5
@ -2043,7 +2043,7 @@ class CallActivity : CallBaseActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onNext(genericOverall: GenericOverall) {
|
override fun onNext(genericOverall: GenericOverall) {
|
||||||
if (!switchToRoomToken.isEmpty()) {
|
if (switchToRoomToken.isNotEmpty()) {
|
||||||
val intent = Intent(context, ChatActivity::class.java)
|
val intent = Intent(context, ChatActivity::class.java)
|
||||||
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
|
||||||
val bundle = Bundle()
|
val bundle = Bundle()
|
||||||
@ -2064,8 +2064,8 @@ class CallActivity : CallBaseActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun onError(e: Throwable) {
|
override fun onError(e: Throwable) {
|
||||||
Snackbar.make(binding!!.root, R.string.nc_common_error_sorry, Snackbar.LENGTH_LONG).show()
|
Log.w(TAG, "Something went wrong when leaving the call", e)
|
||||||
Log.e(TAG, "Error while leaving the call", e)
|
finish()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onComplete() {
|
override fun onComplete() {
|
||||||
|
Loading…
Reference in New Issue
Block a user