Skip to content

Commit 02f6e1d

Browse files
committed
Merge branch 'release/5.10.1'
2 parents aa56cd2 + 090f309 commit 02f6e1d

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'kotlin-kapt'
66
apply from: '../versioning.gradle'
77

88
ext {
9-
VERSION_NAME = "5.10.0"
9+
VERSION_NAME = "5.10.1"
1010
USE_ORCHESTRATOR = project.hasProperty('orchestrator') ? project.property('orchestrator') : false
1111
}
1212

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,6 @@ class BrowserActivity : DuckDuckGoActivity() {
125125
if (intent.getBooleanExtra(PERFORM_FIRE_ON_ENTRY_EXTRA, false)) {
126126
viewModel.onClearRequested()
127127
clearPersonalDataAction.clear()
128-
Toast.makeText(applicationContext, R.string.fireDataCleared, Toast.LENGTH_LONG).show()
129-
finish()
130128
return
131129
}
132130

@@ -195,8 +193,8 @@ class BrowserActivity : DuckDuckGoActivity() {
195193

196194
fun launchFire() {
197195
val dialog = FireDialog(context = this, pixel = pixel, clearPersonalDataAction = clearPersonalDataAction)
198-
dialog.clearStarted = {viewModel.onClearRequested()}
199-
dialog.clearComplete = { viewModel.onClearComplete()}
196+
dialog.clearStarted = { viewModel.onClearRequested() }
197+
dialog.clearComplete = { viewModel.onClearComplete() }
200198
dialog.show()
201199
}
202200

0 commit comments

Comments
 (0)