Use 'with blocklists' as default in menu

This commit is contained in:
TC
2023-05-12 19:07:51 +02:00
parent 3b6a7c82ef
commit a9227b529c

View File

@ -6,7 +6,7 @@ module.exports = () => [
submenu: Object.values(config.blockers).map((blocker) => ({
label: blocker,
type: "radio",
checked: config.get("blocker") === blocker,
checked: (config.get("blocker") || config.blockers.WithBlocklists) === blocker,
click: () => {
config.set("blocker", blocker);
},