Mangasee: fix chapter url suffix location (#4027)
Mangasee: fix chapter url suffix location
This commit is contained in:
parent
f372ba8cd7
commit
dc5db55a8f
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Mangasee'
|
||||
pkgNameSuffix = 'en.mangasee'
|
||||
extClass = '.Mangasee'
|
||||
extVersionCode = 11
|
||||
extVersionCode = 12
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -218,7 +218,7 @@ class Mangasee : HttpSource() {
|
|||
var suffix = ""
|
||||
val path = e.substring(e.length - 1).toInt()
|
||||
if (0 != path) { suffix = ".$path" }
|
||||
return "-chapter-$n$index$suffix.html"
|
||||
return "-chapter-$n$suffix$index.html"
|
||||
}
|
||||
|
||||
private val chapterImageRegex = Regex("""^0+""")
|
||||
|
|
Loading…
Reference in New Issue