Compare commits

..

5 Commits

5 changed files with 14 additions and 9 deletions

View File

@@ -18,6 +18,7 @@
<!-- CRL Distribution Servers -->
<domain includeSubdomains="true">c.lencr.org</domain>
<domain includeSubdomains="true">c.pki.goog</domain>
<domain includeSubdomains="true">crls.certainly.com</domain>
<!-- OCSP Responder Servers -->
<domain includeSubdomains="true">o.pki.goog</domain>

View File

@@ -63,13 +63,16 @@ class BrowserThirdPartyAutofillManagerImpl(
var thirdPartyEnabled = false
val isThirdPartyAvailable = cursor
?.use {
it.moveToFirst()
thirdPartyEnabled = it
.getColumnIndex(THIRD_PARTY_MODE_COLUMN)
.takeUnless { columnIndex -> columnIndex == -1 }
?.let { columnIndex -> it.getInt(columnIndex) != 0 }
?: false
true
if (it.moveToFirst()) {
thirdPartyEnabled = it
.getColumnIndex(THIRD_PARTY_MODE_COLUMN)
.takeUnless { columnIndex -> columnIndex == -1 }
?.let { columnIndex -> it.getInt(columnIndex) != 0 }
?: false
true
} else {
false
}
}
?: false
return BrowserThirdPartyAutoFillData(

View File

@@ -829,7 +829,7 @@ fun Cipher.toFailureCipherListView(): CipherListView =
folderId = folderId,
collectionIds = collectionIds,
key = key,
name = name.orEmpty(),
name = name,
subtitle = "",
type = when (type) {
CipherType.LOGIN -> CipherListViewType.Login(

View File

@@ -18,6 +18,7 @@
<!-- CRL Distribution Servers -->
<domain includeSubdomains="true">c.lencr.org</domain>
<domain includeSubdomains="true">c.pki.goog</domain>
<domain includeSubdomains="true">crls.certainly.com</domain>
<!-- OCSP Responder Servers -->
<domain includeSubdomains="true">o.pki.goog</domain>

View File

@@ -30,7 +30,7 @@ androidxRoom = "2.8.4"
androidxSecurityCrypto = "1.1.0"
androidxSplash = "1.2.0"
androidxWork = "2.11.2"
bitwardenSdk = "3.0.0-7338-5bdc976f"
bitwardenSdk = "3.0.0-7360-56536238"
crashlytics = "3.0.7"
detekt = "1.23.8"
firebaseBom = "34.14.0"