File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
src/main/java/com/duckduckgo/app/browser Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apply plugin: 'kotlin-kapt'
66apply from : ' ../versioning.gradle'
77
88ext {
9- VERSION_NAME = " 5.10.0 "
9+ VERSION_NAME = " 5.10.1 "
1010 USE_ORCHESTRATOR = project. hasProperty(' orchestrator' ) ? project. property(' orchestrator' ) : false
1111}
1212
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments