]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/commitdiff
Increase the delay time that the SSL certificate dialog won't display after restart...
authorSoren Stoutner <soren@stoutner.com>
Sun, 13 Aug 2023 02:06:58 +0000 (19:06 -0700)
committerSoren Stoutner <soren@stoutner.com>
Sun, 13 Aug 2023 02:06:58 +0000 (19:06 -0700)
app/src/main/java/com/stoutner/privacybrowser/activities/MainWebViewActivity.kt

index ac27dcd657c4315e254ab1db442094f8963f0e1e..de608492aade9b22fe3e09a62d0b1990155dc7df 100644 (file)
@@ -4223,8 +4223,8 @@ class MainWebViewActivity : AppCompatActivity(), CreateBookmarkDialog.CreateBook
                     // Calculate the milliseconds since the last restart.  This can be replaced by the simpler LocalDateTime once the minimum API >= 26.
                     val millisecondsSinceLastRestart = Date().time - restartTime.time
 
-                    // Only display the SSL certificate dialog if it has been at least 1 second since the last restart as deep restarts sometimes end up selecting a tab twice.
-                    if (millisecondsSinceLastRestart > 1000) {
+                    // Only display the SSL certificate dialog if it has been at least 2 seconds since the last restart as deep restarts sometimes end up selecting a tab twice.
+                    if (millisecondsSinceLastRestart > 2000) {
                         // Instantiate the View SSL Certificate dialog.
                         val viewSslCertificateDialogFragment: DialogFragment = ViewSslCertificateDialog.displayDialog(currentWebView!!.webViewFragmentId, currentWebView!!.getFavoriteIcon())