Skip to content

Commit

Permalink
Use 'with blocklists' as default in menu
Browse files Browse the repository at this point in the history
  • Loading branch information
th-ch committed May 12, 2023
1 parent 3b6a7c8 commit a9227b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/adblocker/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
},
Expand Down

0 comments on commit a9227b5

Please sign in to comment.