瀏覽代碼

Tweak how `getChapterUrl` works (#8392)

AntsyLich 2 年之前
父節點
當前提交
1a25cea0d6
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      source-api/src/main/java/eu/kanade/tachiyomi/source/online/HttpSource.kt

+ 5 - 1
source-api/src/main/java/eu/kanade/tachiyomi/source/online/HttpSource.kt

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