Update URL (#2616)
This commit is contained in:
parent
f22e64c784
commit
0554ea97d9
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: BH3'
|
appName = 'Tachiyomi: BH3'
|
||||||
pkgNameSuffix = 'zh.bh3'
|
pkgNameSuffix = 'zh.bh3'
|
||||||
extClass = '.BH3'
|
extClass = '.BH3'
|
||||||
extVersionCode = 1
|
extVersionCode = 2
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package eu.kanade.tachiyomi.extension.zh.bh3
|
package eu.kanade.tachiyomi.extension.zh.bh3
|
||||||
|
|
||||||
import android.util.Log
|
|
||||||
import com.github.salomonbrys.kotson.float
|
import com.github.salomonbrys.kotson.float
|
||||||
import com.github.salomonbrys.kotson.get
|
import com.github.salomonbrys.kotson.get
|
||||||
import com.github.salomonbrys.kotson.int
|
import com.github.salomonbrys.kotson.int
|
||||||
|
@ -8,7 +7,10 @@ import com.github.salomonbrys.kotson.string
|
||||||
import com.google.gson.JsonElement
|
import com.google.gson.JsonElement
|
||||||
import com.google.gson.JsonParser
|
import com.google.gson.JsonParser
|
||||||
import eu.kanade.tachiyomi.network.GET
|
import eu.kanade.tachiyomi.network.GET
|
||||||
import eu.kanade.tachiyomi.source.model.*
|
import eu.kanade.tachiyomi.source.model.FilterList
|
||||||
|
import eu.kanade.tachiyomi.source.model.Page
|
||||||
|
import eu.kanade.tachiyomi.source.model.SChapter
|
||||||
|
import eu.kanade.tachiyomi.source.model.SManga
|
||||||
import eu.kanade.tachiyomi.source.online.ParsedHttpSource
|
import eu.kanade.tachiyomi.source.online.ParsedHttpSource
|
||||||
import eu.kanade.tachiyomi.util.asJsoup
|
import eu.kanade.tachiyomi.util.asJsoup
|
||||||
import okhttp3.OkHttpClient
|
import okhttp3.OkHttpClient
|
||||||
|
@ -16,7 +18,7 @@ import okhttp3.Response
|
||||||
import org.jsoup.nodes.Document
|
import org.jsoup.nodes.Document
|
||||||
import org.jsoup.nodes.Element
|
import org.jsoup.nodes.Element
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.util.*
|
import java.util.Locale
|
||||||
import java.util.concurrent.TimeUnit
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
class BH3 : ParsedHttpSource() {
|
class BH3 : ParsedHttpSource() {
|
||||||
|
@ -55,7 +57,7 @@ class BH3 : ParsedHttpSource() {
|
||||||
|
|
||||||
private fun mangaFromElement(element: Element): SManga {
|
private fun mangaFromElement(element: Element): SManga {
|
||||||
val manga = SManga.create()
|
val manga = SManga.create()
|
||||||
manga.url = element.select("a").attr("href")
|
manga.url = "/book/" + element.select("div.container").attr("id")
|
||||||
manga.title = element.select("div.container-title").text().trim()
|
manga.title = element.select("div.container-title").text().trim()
|
||||||
manga.thumbnail_url = element.select("img").attr("abs:src")
|
manga.thumbnail_url = element.select("img").attr("abs:src")
|
||||||
return manga
|
return manga
|
||||||
|
|
Loading…
Reference in New Issue