Merge pull request #3502 from nextcloud/bugfix/3491/fixErrorWhenDecliningRecConsent

avoid error when declining recording consent
This commit is contained in:
Marcel Hibbe 2023-12-05 18:57:35 +01:00 committed by GitHub
commit 8507e96bc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2043,7 +2043,7 @@ class CallActivity : CallBaseActivity() {
}
override fun onNext(genericOverall: GenericOverall) {
if (!switchToRoomToken.isEmpty()) {
if (switchToRoomToken.isNotEmpty()) {
val intent = Intent(context, ChatActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
val bundle = Bundle()
@ -2064,8 +2064,8 @@ class CallActivity : CallBaseActivity() {
}
override fun onError(e: Throwable) {
Snackbar.make(binding!!.root, R.string.nc_common_error_sorry, Snackbar.LENGTH_LONG).show()
Log.e(TAG, "Error while leaving the call", e)
Log.w(TAG, "Something went wrong when leaving the call", e)
finish()
}
override fun onComplete() {