For #7343: Handle sharing to multiple devices (#7409)

* For #7343 Do not allow multiple share to same device

* For #7343 Check current destination before dismissing share
fennec/nightly
Mihai Adrian 4 years ago committed by Sawyer Blatz
parent 718c211a86
commit 666b3d9627

@ -128,7 +128,9 @@ class DefaultShareController(
showFailureWithRetryOption { shareToDevicesWithRetry(shareOperation) }
ShareController.Result.DISMISSED
}
dismiss(result)
if (navController.currentDestination?.id == R.id.shareFragment) {
dismiss(result)
}
}
}

@ -42,6 +42,7 @@ class AccountDeviceViewHolder(
// nothing we are offline
}
}
it.setOnClickListener(null)
}
}

Loading…
Cancel
Save