Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Revert "Tweak how getChapterUrl works (#8392)" (#8427)

This reverts commit 1a25cea0d6.
Cette révision appartient à :
stevenyomi 2022-11-03 21:23:59 +08:00 révisé par GitHub
Parent 37ff3b4920
révision b006fe3a22
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

@ -375,11 +375,7 @@ abstract class HttpSource : CatalogueSource {
* @return url of the chapter
*/
open fun getChapterUrl(chapter: SChapter): String {
return if (chapter.url.startsWith("http")) {
chapter.url
} else {
baseUrl + chapter.url
}
return pageListRequest(chapter).url.toString()
}
/**