Skip to content

Commit f765023

Browse files
committed
Merge branch 'hotfix/5.50.1'
2 parents e9a7c06 + 7606bd6 commit f765023

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

app/src/main/java/com/duckduckgo/app/browser/BrowserTabFragment.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,9 @@ class BrowserTabFragment : Fragment(), FindListener, CoroutineScope {
10981098

10991099
private fun requestDownloadConfirmation(pendingDownload: PendingFileDownload, downloadListener: FileDownloadListener) {
11001100
fragmentManager?.let {
1101-
DownloadConfirmationFragment.instance(pendingDownload, downloadListener).show(it, DOWNLOAD_CONFIRMATION_TAG)
1101+
if (!it.isStateSaved) {
1102+
DownloadConfirmationFragment.instance(pendingDownload, downloadListener).show(it, DOWNLOAD_CONFIRMATION_TAG)
1103+
}
11021104
}
11031105
}
11041106

app/version/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION=5.50.0
1+
VERSION=5.50.1

0 commit comments

Comments
 (0)