More HTTPS upgrades (#2057)

This commit is contained in:
ObserverOfTime
2020-02-23 06:35:13 +02:00
committed by GitHub
parent b1f787e5b2
commit e23b69f8a7
69 changed files with 120 additions and 120 deletions

View File

@ -5,8 +5,8 @@ ext {
appName = 'Tachiyomi: MeDocTruyenTranh'
pkgNameSuffix = 'vi.medoctruyentranh'
extClass = '.MeDocTruyenTranh'
extVersionCode = 1
extVersionCode = 2
libVersion = '1.2'
}
apply from: "$rootDir/common.gradle"
apply from: "$rootDir/common.gradle"

View File

@ -18,7 +18,7 @@ class MeDocTruyenTranh : ParsedHttpSource() {
override val name = "MeDocTruyenTranh"
override val baseUrl = "http://www.medoctruyentranh.net"
override val baseUrl = "https://www.medoctruyentranh.net"
override val lang = "vi"
@ -51,7 +51,7 @@ class MeDocTruyenTranh : ParsedHttpSource() {
return manga
}
override fun searchMangaFromElement(element: Element): SManga {
val manga = SManga.create()
val jsonData = element.ownerDocument().select("#__NEXT_DATA__").first()!!.data()
@ -166,4 +166,4 @@ class MeDocTruyenTranh : ParsedHttpSource() {
override fun latestUpdatesRequest(page: Int) = throw UnsupportedOperationException("This method should not be called!")
override fun chapterFromElement(element: Element): SChapter = throw UnsupportedOperationException("This method should not be called!")
}
}