Skip to content

Commit c1935d5

Browse files
committed
fix(dnt.js): Fix controll level name
1 parent 37cc69b commit c1935d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/background/filter/dnt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cloudopt.config.refresh(function () {
33
if (chrome.privacy && chrome.privacy.websites.doNotTrackEnabled) {
44
chrome.privacy.websites.doNotTrackEnabled.get({}, function (details) {
55
var config = cloudopt.config.get();
6-
if (details.levelOfControl === 'controlled_by_this_extension' && config.safePrivacy) {
6+
if (details.levelOfControl === 'controllable_by_this_extension' && config.safePrivacy) {
77
chrome.privacy.websites.doNotTrackEnabled.set({ value: true }, function () {
88
if (chrome.runtime.lastError) cloudopt.debug.debug(chrome.runtime.lastError);
99
})

0 commit comments

Comments
 (0)