mirror of
https://github.com/bitwarden/android.git
synced 2026-06-11 00:56:24 -05:00
Compare commits
5 Commits
PM-38808/s
...
sdlc/sdk-u
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cada80b4b8 | ||
|
|
b7a2691804 | ||
|
|
2c2c534bcd | ||
|
|
0f13d97cb1 | ||
|
|
2c7eef2b8c |
@@ -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>
|
||||
|
||||
@@ -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(
|
||||
|
||||
@@ -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(
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user