diff --git a/src/en/webtoons/build.gradle b/src/en/webtoons/build.gradle index 66f6e6c30..e8fb3b708 100644 --- a/src/en/webtoons/build.gradle +++ b/src/en/webtoons/build.gradle @@ -5,8 +5,8 @@ ext { appName = 'Tachiyomi: Webtoons' pkgNameSuffix = "en.webtoons" extClass = '.Webtoons' - extVersionCode = 2 - extVersionSuffix = 1 + extVersionCode = 3 + extVersionSuffix = 2 libVersion = '1.2' } diff --git a/src/en/webtoons/src/eu/kanade/tachiyomi/extension/en/webtoons/Webtoons.kt b/src/en/webtoons/src/eu/kanade/tachiyomi/extension/en/webtoons/Webtoons.kt index a65fc1721..d3ca45551 100644 --- a/src/en/webtoons/src/eu/kanade/tachiyomi/extension/en/webtoons/Webtoons.kt +++ b/src/en/webtoons/src/eu/kanade/tachiyomi/extension/en/webtoons/Webtoons.kt @@ -136,7 +136,7 @@ class Webtoons : ParsedHttpSource() { chapter.name = element.select("a > div.row > div.info > p.sub_title > span.ellipsis").text() val select = element.select("a > div.row > div.num") if (select.isNotEmpty()) { - chapter.name = chapter.name + " Ch. " + select.text() + chapter.name = chapter.name + " Ch. " + select.text().substringAfter("#") } chapter.date_upload = element.select("a > div.row > div.info > p.date").text()?.let { SimpleDateFormat("MMM d, yyyy", Locale.ENGLISH).parse(it).time } ?: 0 return chapter