Skip to content

Commit

Permalink
fix: tapas.io, mistake logged on user for title
Browse files Browse the repository at this point in the history
When logged onto tapas.io, was getting the logged on user as the title.
See: #1242
  • Loading branch information
dteviot committed Mar 15, 2024
1 parent 9d58e3d commit bd41d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/js/parsers/TapasParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class TapasParser extends Parser{
}

extractTitleImpl(dom) {
return dom.querySelector("a.title").textContent;
return dom.querySelector(".series-root a.title").textContent;
}

extractAuthor(dom) {
Expand Down

0 comments on commit bd41d44

Please sign in to comment.