parent
38c3ab9647
commit
5507a0e6b2
|
@ -1,7 +1,7 @@
|
||||||
ext {
|
ext {
|
||||||
extName = 'MyReadingManga'
|
extName = 'MyReadingManga'
|
||||||
extClass = '.MyReadingMangaFactory'
|
extClass = '.MyReadingMangaFactory'
|
||||||
extVersionCode = 51
|
extVersionCode = 52
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ open class MyReadingManga(override val lang: String, private val siteLang: Strin
|
||||||
title = cleanTitle(document.select("h1").text())
|
title = cleanTitle(document.select("h1").text())
|
||||||
author = cleanAuthor(document.select("h1").text())
|
author = cleanAuthor(document.select("h1").text())
|
||||||
artist = author
|
artist = author
|
||||||
genre = document.select(".entry-header p a[href*=genre]").joinToString { it.text() }
|
genre = document.select(".entry-header p a[href*=genre], [href*=tag]").joinToString { it.text() }
|
||||||
val basicDescription = document.select("h1").text()
|
val basicDescription = document.select("h1").text()
|
||||||
// too troublesome to achieve 100% accuracy assigning scanlator group during chapterListParse
|
// too troublesome to achieve 100% accuracy assigning scanlator group during chapterListParse
|
||||||
val scanlatedBy = document.select(".entry-terms:has(a[href*=group])").firstOrNull()
|
val scanlatedBy = document.select(".entry-terms:has(a[href*=group])").firstOrNull()
|
||||||
|
|
Loading…
Reference in New Issue