Skip to content

Commit

Permalink
IRovedOut: fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
AwkwardPeak7 committed Jan 26, 2025
1 parent 8fef644 commit 0a4343c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 0a4343c

Please sign in to comment.