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

Commit

Permalink
Merge pull request #14158 from bsclifton/uphold-fingerprint-exception
Browse files Browse the repository at this point in the history
Add default exception for uphold.com for fingerprint protection (sinc…
  • Loading branch information
bsclifton authored May 17, 2018
2 parents c096c58 + 7e91a86 commit 54f6b31
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions js/data/siteSettingsList.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,10 @@ module.exports.defaultSiteSettingsList = [
"name" : "autoplay",
"pattern" : "https://www.twitch.tv",
"value" : true,
},
{
"name" : "fingerprintingProtection",
"pattern" : "https://uphold.com",
"value" : "allowAllFingerprinting"
}
]
3 changes: 3 additions & 0 deletions test/unit/app/sessionStoreTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,9 @@ describe('sessionStore unit tests', function () {
},
'https://www.youtube.com': {
autoplay: true
},
'https://uphold.com': {
fingerprintingProtection: 'allowAllFingerprinting'
}
}
runImportDefaultSettings.reset()
Expand Down

0 comments on commit 54f6b31

Please sign in to comment.