IRovedOut: fix regex

This commit is contained in:
AwkwardPeak7 2025-01-26 18:22:34 +05:00 committed by Draff
parent d65dce62ae
commit 932ce83b1c
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class IRovedOut : HttpSource() {
It updates in chunks anywhere between 3 and 30 pages long at least once a month.
""".trimIndent()
private val dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale.US)
private val titleRegex = Regex("Book (\\d+): (?.+)")
private val titleRegex = Regex("Book (\\d+): (.+)")
override fun chapterListRequest(manga: SManga): Request = throw UnsupportedOperationException()