Skip to content

Commit

Permalink
Update tumblr
Browse files Browse the repository at this point in the history
See: #1091
Update selector for content
  • Loading branch information
dteviot committed Nov 10, 2023
1 parent e128400 commit 1f0f216
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/js/parsers/TumblrParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ class TumblrParser extends Parser{

findContent(dom) {
return dom.querySelector("main div.post") ||
dom.querySelector("main div.post-main");
dom.querySelector("main div.post-main") ||
dom.querySelector("article div.post-content");
}

async fetchChapter(url) {
Expand Down

0 comments on commit 1f0f216

Please sign in to comment.