X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fcom%2Fstoutner%2Fprivacybrowser%2Fdialogs%2FPinnedMismatchDialog.kt;h=d4ba4a74d9a8fe1a54378ee891c39f8df180fca2;hb=6ea3e4ebd779594b45ad8f51cc40761bb6d89030;hp=c3a5c7fed3034a741b36014982cf270aaa9fed18;hpb=031def95c6d9bfc14113fe86b4a5690233d93ce2;p=PrivacyBrowserAndroid.git diff --git a/app/src/main/java/com/stoutner/privacybrowser/dialogs/PinnedMismatchDialog.kt b/app/src/main/java/com/stoutner/privacybrowser/dialogs/PinnedMismatchDialog.kt index c3a5c7fe..d4ba4a74 100644 --- a/app/src/main/java/com/stoutner/privacybrowser/dialogs/PinnedMismatchDialog.kt +++ b/app/src/main/java/com/stoutner/privacybrowser/dialogs/PinnedMismatchDialog.kt @@ -23,7 +23,6 @@ import android.annotation.SuppressLint import android.app.Dialog import android.content.Context import android.content.DialogInterface -import android.content.res.Configuration import android.graphics.drawable.BitmapDrawable import android.graphics.drawable.Drawable import android.os.Bundle @@ -106,7 +105,7 @@ class PinnedMismatchDialog : DialogFragment() { val dialogBuilder = AlertDialog.Builder(requireContext(), R.style.PrivacyBrowserAlertDialog) // Get the favorite icon. - val favoriteIconBitmap = nestedScrollWebView.favoriteOrDefaultIcon + val favoriteIconBitmap = nestedScrollWebView.getFavoriteOrDefaultIcon() // Get the default favorite icon drawable. `ContextCompat` must be used until API >= 21. val defaultFavoriteIconDrawable = ContextCompat.getDrawable(requireContext(), R.drawable.world) @@ -119,15 +118,8 @@ class PinnedMismatchDialog : DialogFragment() { // Set the favorite icon as the dialog icon if it exists. if (favoriteIconBitmap.sameAs(defaultFavoriteIconBitmap)) { // There is no website favorite icon. - // Get the current theme status. - val currentThemeStatus = resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK - // Set the icon according to the theme. - if (currentThemeStatus == Configuration.UI_MODE_NIGHT_NO) { - dialogBuilder.setIcon(R.drawable.ssl_certificate_enabled_day) - } else { - dialogBuilder.setIcon(R.drawable.ssl_certificate_enabled_night) - } + dialogBuilder.setIconAttribute(R.attr.sslCertificateBlueIcon) } else { // There is a favorite icon. // Create a drawable version of the favorite icon. val favoriteIconDrawable: Drawable = BitmapDrawable(resources, favoriteIconBitmap) @@ -171,7 +163,7 @@ class PinnedMismatchDialog : DialogFragment() { } // Update the IP addresses if they are pinned. - if (nestedScrollWebView.hasPinnedIpAddresses()) { + if (!nestedScrollWebView.pinnedIpAddresses.equals("")) { // Update the pinned IP addresses in the domain database. domainsDatabaseHelper.updatePinnedIpAddresses(nestedScrollWebView.domainSettingsDatabaseId, nestedScrollWebView. currentIpAddresses) @@ -194,7 +186,7 @@ class PinnedMismatchDialog : DialogFragment() { // Set the proceed button listener. dialogBuilder.setPositiveButton(R.string.proceed) { _: DialogInterface?, _: Int -> // Do not check the pinned information for this domain again until the domain changes. - nestedScrollWebView.setIgnorePinnedDomainInformation(true) + nestedScrollWebView.ignorePinnedDomainInformation = true } // Create an alert dialog from the alert dialog builder.