Skip to content

Commit

Permalink
Increase minimumThrottle for ScribbleHub
Browse files Browse the repository at this point in the history
Failed/second Requests on ScribbleHub are common enough to trigger a cloudflare error.
  • Loading branch information
Kiradien committed Aug 11, 2024
1 parent d883428 commit 09ad82c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/js/parsers/ScribblehubParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ parserFactory.register("scribblehub.com", () => new ScribblehubParser());
class ScribblehubParser extends Parser {
constructor() {
super();
this.minimumThrottle = 3000;
this.minimumThrottle = 5000;
}

async getChapterUrls(dom, chapterUrlsUI) {
Expand Down

0 comments on commit 09ad82c

Please sign in to comment.