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

Commit

Permalink
Fix #183: Enable telemetry for default cookie setting in Firefox 64+
Browse files Browse the repository at this point in the history
  • Loading branch information
biancadanforth committed Nov 8, 2018
1 parent 4b598db commit b05dc0d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/privacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function doNotTrackEnabled() {
async function cookiesBlocked() {
if (browser.privacy.websites.cookieConfig) {
const {behavior} = (await browser.privacy.websites.cookieConfig.get({})).value;
if (!['allow_all', 'allow_visited'].includes(behavior)) {
if (!['allow_all', 'allow_visited', 'reject_trackers'].includes(behavior)) {
return true;
}

Expand Down
1 change: 0 additions & 1 deletion web-ext-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = {
'[email protected]=30000',
'extensions.shopping-testpilot@mozilla.org.priceCheckTimeoutInterval=30000',
'[email protected]=10000',
'network.cookie.cookieBehavior=3', // See Issue #183
],
startUrl: [
'http://www.mkelly.me/fake-product-page/',
Expand Down

0 comments on commit b05dc0d

Please sign in to comment.