Skip to content

Commit a9227b5

Browse files
committed
Use 'with blocklists' as default in menu
1 parent 3b6a7c8 commit a9227b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/adblocker/menu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = () => [
66
submenu: Object.values(config.blockers).map((blocker) => ({
77
label: blocker,
88
type: "radio",
9-
checked: config.get("blocker") === blocker,
9+
checked: (config.get("blocker") || config.blockers.WithBlocklists) === blocker,
1010
click: () => {
1111
config.set("blocker", blocker);
1212
},

0 commit comments

Comments
 (0)