Fix errors (#898)

* Cleared some text and changed base domain

* Fix error (Illegal Escape)
This commit is contained in:
Líng Yì
2022-10-03 14:42:32 +07:00
committed by GitHub
parent 73af1259ac
commit 64bc6a95d2

View File

@ -80,7 +80,7 @@ class OtakuDesu : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
(epsNum.isNotEmpty()) -> epsNum.toFloat()
else -> 1F
}
episode.name = element.select("span > a").text().replace(".+?(?=Episode)|\sSubtitle.+".toRegex(), "")
episode.name = element.select("span > a").text().replace(".+?(?=Episode)|\\sSubtitle.+".toRegex(), "")
episode.date_upload = reconstructDate(element.select("span.zeebr").text())
return episode