ManhwaWeb: Fix chapter url (#1583)

I blame the IDE for not tell me about unused val
This commit is contained in:
bapeey 2024-02-27 10:29:51 -05:00 committed by Draff
parent ee937137c3
commit 6c6f1b4d6b
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'ManhwaWeb' extName = 'ManhwaWeb'
extClass = '.ManhwaWeb' extClass = '.ManhwaWeb'
extVersionCode = 1 extVersionCode = 2
isNsfw = true isNsfw = true
} }

View File

@ -160,7 +160,7 @@ class ManhwaWeb : HttpSource(), ConfigurableSource {
name = "Capítulo ${number.toString().removeSuffix(".0")}" name = "Capítulo ${number.toString().removeSuffix(".0")}"
chapter_number = number chapter_number = number
date_upload = createdAt ?: 0 date_upload = createdAt ?: 0
setUrlWithoutDomain(url) setUrlWithoutDomain(this@toSChapter.url)
scanlator = type scanlator = type
} }