mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-21 18:02:42 +01:00
TMO: Update domain and fix image headers (#5284)
update domain and headers
This commit is contained in:
parent
3dc05e8803
commit
74717fddcc
@ -14,7 +14,7 @@
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
<data android:scheme="https"/>
|
||||
<data android:host="lectormanga.com"/>
|
||||
<data android:host="visortmo.com"/>
|
||||
<data android:host="zonatmo.com"/>
|
||||
<data android:pathPattern="/library/..*/..*/..*"/>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
@ -1,7 +1,7 @@
|
||||
ext {
|
||||
extName = 'TuMangaOnline / LectorManga'
|
||||
extClass = '.LectorTmoFactory'
|
||||
extVersionCode = 3
|
||||
extVersionCode = 4
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
@ -439,9 +439,12 @@ abstract class LectorTmo(
|
||||
}
|
||||
}
|
||||
|
||||
override fun imageRequest(page: Page): Request {
|
||||
return GET(page.imageUrl!! + "#imagereq", tmoHeaders)
|
||||
}
|
||||
override fun imageRequest(page: Page) = GET(
|
||||
url = page.imageUrl!! + "#imagereq",
|
||||
headers = headers.newBuilder()
|
||||
.set("Referer", page.url.substringBefore("news/"))
|
||||
.build(),
|
||||
)
|
||||
|
||||
override fun imageUrlParse(document: Document) = throw UnsupportedOperationException()
|
||||
|
||||
|
@ -1,10 +1,8 @@
|
||||
package eu.kanade.tachiyomi.extension.es.lectortmo
|
||||
|
||||
import eu.kanade.tachiyomi.network.GET
|
||||
import eu.kanade.tachiyomi.network.NetworkHelper
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import eu.kanade.tachiyomi.source.SourceFactory
|
||||
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.util.asJsoup
|
||||
@ -27,7 +25,7 @@ val rateLimitClient = Injekt.get<NetworkHelper>().cloudflareClient.newBuilder()
|
||||
.rateLimit(1, 1500, TimeUnit.MILLISECONDS)
|
||||
.build()
|
||||
|
||||
class TuMangaOnline : LectorTmo("TuMangaOnline", "https://visortmo.com", "es", rateLimitClient) {
|
||||
class TuMangaOnline : LectorTmo("TuMangaOnline", "https://zonatmo.com", "es", rateLimitClient) {
|
||||
override val id = 4146344224513899730
|
||||
}
|
||||
|
||||
@ -82,11 +80,4 @@ class LectorManga : LectorTmo("LectorManga", "https://lectormanga.com", "es", ra
|
||||
parseChapterDate(it)
|
||||
} ?: 0
|
||||
}
|
||||
|
||||
override fun imageRequest(page: Page) = GET(
|
||||
url = page.imageUrl!! + "#imagereq",
|
||||
headers = headers.newBuilder()
|
||||
.set("Referer", page.url.substringBefore("news/"))
|
||||
.build(),
|
||||
)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user