Skip to content

Commit

Permalink
MyReadingManga: add "Filed Under" to manga (#5654)
Browse files Browse the repository at this point in the history
Add filed under
  • Loading branch information
kana-shii authored Oct 23, 2024
1 parent a14fabf commit d39e0f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/all/myreadingmanga/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'MyReadingManga'
extClass = '.MyReadingMangaFactory'
extVersionCode = 52
extVersionCode = 53
isNsfw = true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ open class MyReadingManga(override val lang: String, private val siteLang: Strin
title = cleanTitle(document.select("h1").text())
author = cleanAuthor(document.select("h1").text())
artist = author
genre = document.select(".entry-header p a[href*=genre], [href*=tag]").joinToString { it.text() }
genre = document.select(".entry-header p a[href*=genre], [href*=tag], span.entry-categories a").joinToString { it.text() }
val basicDescription = document.select("h1").text()
// too troublesome to achieve 100% accuracy assigning scanlator group during chapterListParse
val scanlatedBy = document.select(".entry-terms:has(a[href*=group])").firstOrNull()
Expand Down

0 comments on commit d39e0f1

Please sign in to comment.