Skip to content

Commit

Permalink
Fix inconsistent override_containers option (#107)
Browse files Browse the repository at this point in the history
When loading the options in options.js the code tries to load
res.override_containers, when the option should be
res.dont_override_containers to be consistent.
  • Loading branch information
sents authored Nov 24, 2020
1 parent 83be463 commit 94d3ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion options.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function onOptionsPageLoaded()
document.querySelector("#ignore_prefpages").checked = res.ignore_prefpages || false;
document.querySelector("#ignore_maps").checked = res.ignore_maps || false;
document.querySelector("#ignore_flights").checked = res.ignore_flights || false;
document.querySelector("#dont_override_containers").checked = res.override_containers || false;
document.querySelector("#dont_override_containers").checked = res.dont_override_containers || false;
});
}

Expand Down

0 comments on commit 94d3ca0

Please sign in to comment.