remove unused ignore option

main
Lee Hanken 2022-12-21 23:09:51 +00:00
parent 7fd37a770f
commit 34c8548d0c
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ class stack_reader {
}
module.exports = {
reader_for_url: function (url, options = []) {
if (!ignore_apple && url.startsWith(apple_dev_prefix)) {
reader_for_url: function (url) {
if (url.startsWith(apple_dev_prefix)) {
return new apple_reader;
} else if (url.startsWith(stackoverflow_prefix)) {
return new stack_reader;