We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55297cb commit 5e3e15fCopy full SHA for 5e3e15f
src/bg/main.js
@@ -71,12 +71,14 @@
71
if (data) {
72
ns.policy = new Policy(data.policy);
73
ns.unrestrictedTabs = new Set(data.unrestrictedTabs);
74
+ Settings.gotTorBrowserInit = data.gotTorBrowserInit;
75
}
76
},
77
beforeSave() { // beforeSave
78
return {
79
policy: ns.policy.dry(true),
80
unrestrictedTabs: [...ns.unrestrictedTabs],
81
+ gotTorBrowserInit: Settings.gotTorBrowserInit,
82
};
83
84
0 commit comments