commit 2bbe0817a830a1fc243e255d090cba765c17372c
parent 45d278ab6d3ddcd788ccaa661064869c96500f68
Author: clairehurst <clairehurst@torproject.org>
Date: Thu, 29 Jan 2026 15:21:48 -0700
TB 43349 [android]: Add feedback for successful bootstrap
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/tor/TorControllerGV.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/tor/TorControllerGV.kt
@@ -3,6 +3,7 @@ package org.mozilla.fenix.tor
import android.content.Context
import android.util.Log
+import android.widget.Toast
import androidx.lifecycle.LifecycleCoroutineScope
import mozilla.components.browser.engine.gecko.GeckoEngine
import org.mozilla.fenix.ext.components
@@ -190,6 +191,11 @@ class TorControllerGV(
runOnceBootstrappedHandlers.remove(it)
}
}
+ Toast.makeText(
+ context,
+ context.getString(org.mozilla.fenix.R.string.connection_assist_bootstrap_succeeded_toast_message),
+ Toast.LENGTH_LONG,
+ ).show()
}
}