This commit is contained in:
Eugene 2021-04-14 23:14:40 +05:00 committed by GitHub
parent c920c8e32b
commit 5fe32a19fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Readmanga'
pkgNameSuffix = 'ru.readmanga'
extClass = '.Readmanga'
extVersionCode = 24
extVersionCode = 25
libVersion = '1.2'
}

View File

@ -198,7 +198,7 @@ class Readmanga : ParsedHttpSource() {
chapter.name = chapter.name.substringAfter("").trim()
}
chapter.date_upload = element.select("td.hidden-xxs").last()?.text()?.let {
chapter.date_upload = element.select("td.d-none").last()?.text()?.let {
try {
SimpleDateFormat("dd.MM.yy", Locale.US).parse(it)?.time ?: 0L
} catch (e: ParseException) {