mirror of
https://github.com/bitwarden/android.git
synced 2026-06-09 16:21:19 -05:00
Compare commits
1 Commits
PM-38779-c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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,16 +63,13 @@ class BrowserThirdPartyAutofillManagerImpl(
|
||||
var thirdPartyEnabled = false
|
||||
val isThirdPartyAvailable = cursor
|
||||
?.use {
|
||||
if (it.moveToFirst()) {
|
||||
thirdPartyEnabled = it
|
||||
.getColumnIndex(THIRD_PARTY_MODE_COLUMN)
|
||||
.takeUnless { columnIndex -> columnIndex == -1 }
|
||||
?.let { columnIndex -> it.getInt(columnIndex) != 0 }
|
||||
?: false
|
||||
true
|
||||
} else {
|
||||
false
|
||||
}
|
||||
it.moveToFirst()
|
||||
thirdPartyEnabled = it
|
||||
.getColumnIndex(THIRD_PARTY_MODE_COLUMN)
|
||||
.takeUnless { columnIndex -> columnIndex == -1 }
|
||||
?.let { columnIndex -> it.getInt(columnIndex) != 0 }
|
||||
?: false
|
||||
true
|
||||
}
|
||||
?: false
|
||||
return BrowserThirdPartyAutoFillData(
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user