Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Explicitly disable safe browsing since it is enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
darkdh authored and bsclifton committed Jun 23, 2018
1 parent 1014802 commit 4ef6903
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/state/privacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ const getPrivacySettings = () => {
return { 'autofill.enabled': getSetting(settings.AUTOFILL_ENABLED),
'profile.password_manager_enabled': passwordManagerEnabled,
'credentials_enable_service': passwordManagerEnabled,
'credentials_enable_autosignin': false
'credentials_enable_autosignin': false,
// required explicitly disable it because it is true by default
// https://chromium.googlesource.com/chromium/src/+/dac2bad4efc572810f6b39598705c01df7c64ea6/components/safe_browsing/common/safe_browsing_prefs.cc#283
'safebrowsing.enabled': false
}
}

Expand Down

0 comments on commit 4ef6903

Please sign in to comment.