2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-03 23:15:31 +00:00

[fenix] Bug 1815424 - Show Dialog should not be called multiple times.

This commit is contained in:
iorgamgabriel 2023-02-10 12:21:44 +02:00 committed by mergify[bot]
parent 13522ca859
commit b232ce3650

View File

@ -520,28 +520,37 @@ abstract class BaseBrowserFragment :
requestPermissions(permissions, REQUEST_CODE_DOWNLOAD_PERMISSIONS)
},
customFirstPartyDownloadDialog = { filename, contentSize, positiveAction, negativeAction ->
FirstPartyDownloadDialog(
activity = requireActivity(),
filename = filename.value,
contentSize = contentSize.value,
positiveButtonAction = positiveAction.value,
negativeButtonAction = negativeAction.value,
).onDismiss {
currentStartDownloadDialog = null
}.show(binding.startDownloadDialogContainer).also {
currentStartDownloadDialog = it
run {
if (currentStartDownloadDialog == null) {
FirstPartyDownloadDialog(
activity = requireActivity(),
filename = filename.value,
contentSize = contentSize.value,
positiveButtonAction = positiveAction.value,
negativeButtonAction = negativeAction.value,
).onDismiss {
currentStartDownloadDialog = null
}.show(binding.startDownloadDialogContainer)
.also {
currentStartDownloadDialog = it
}
}
}
},
customThirdPartyDownloadDialog = { downloaderApps, onAppSelected, negativeActionCallback ->
ThirdPartyDownloadDialog(
activity = requireActivity(),
downloaderApps = downloaderApps.value,
onAppSelected = onAppSelected.value,
negativeButtonAction = negativeActionCallback.value,
).onDismiss {
currentStartDownloadDialog = null
}.show(binding.startDownloadDialogContainer).also {
currentStartDownloadDialog = it
run {
if (currentStartDownloadDialog == null) {
ThirdPartyDownloadDialog(
activity = requireActivity(),
downloaderApps = downloaderApps.value,
onAppSelected = onAppSelected.value,
negativeButtonAction = negativeActionCallback.value,
).onDismiss {
currentStartDownloadDialog = null
}.show(binding.startDownloadDialogContainer).also {
currentStartDownloadDialog = it
}
}
}
},
)