14 lines
814 B
Diff
14 lines
814 B
Diff
diff --git a/third_party/libaddressinput/chromium/chrome_metadata_source.cc b/third_party/libaddressinput/chromium/chrome_metadata_source.cc
|
|
index 735634c701ee3dc9f022f02b90adfbc38b5e0334..5c4e5e784c40e9166fa6c6ff1f1941761972dde2 100644
|
|
--- a/third_party/libaddressinput/chromium/chrome_metadata_source.cc
|
|
+++ b/third_party/libaddressinput/chromium/chrome_metadata_source.cc
|
|
@@ -60,7 +60,7 @@ ChromeMetadataSource::Request::Request(
|
|
void ChromeMetadataSource::Download(const std::string& key,
|
|
const Callback& downloaded) {
|
|
GURL resource(validation_data_url_ + key);
|
|
- if (!resource.SchemeIsCryptographic()) {
|
|
+ if (/*!resource.SchemeIsCryptographic()*/ true) { // bailing out early, feature disabled in Brave
|
|
downloaded(false, key, std::nullopt);
|
|
return;
|
|
}
|