Increase ratelimit for FlameScans (#7465)
* increase ratelimit for FlameScans changed it to 2 since they have reported on increased server loads from Tachi. Hopefully this eases it out * bump versioncode for FlameScans in WPMangaReader Generator
This commit is contained in:
parent
462e270824
commit
bfe4ac9efd
|
@ -6,7 +6,7 @@ import okhttp3.OkHttpClient
|
||||||
import java.util.concurrent.TimeUnit
|
import java.util.concurrent.TimeUnit
|
||||||
|
|
||||||
class FlameScans : WPMangaReader("Flame Scans", "https://flamescans.org", "en", "/series") {
|
class FlameScans : WPMangaReader("Flame Scans", "https://flamescans.org", "en", "/series") {
|
||||||
private val rateLimitInterceptor = RateLimitInterceptor(4)
|
private val rateLimitInterceptor = RateLimitInterceptor(2)
|
||||||
|
|
||||||
override val client: OkHttpClient = network.cloudflareClient.newBuilder()
|
override val client: OkHttpClient = network.cloudflareClient.newBuilder()
|
||||||
.connectTimeout(10, TimeUnit.SECONDS)
|
.connectTimeout(10, TimeUnit.SECONDS)
|
||||||
|
|
|
@ -22,7 +22,7 @@ class WPMangaReaderGenerator : ThemeSourceGenerator {
|
||||||
SingleLang("Mangasusu", "https://mangasusu.co.in", "id", isNsfw = true),
|
SingleLang("Mangasusu", "https://mangasusu.co.in", "id", isNsfw = true),
|
||||||
SingleLang("TurkToon", "https://turktoon.com", "tr"),
|
SingleLang("TurkToon", "https://turktoon.com", "tr"),
|
||||||
SingleLang("Gecenin Lordu", "https://geceninlordu.com/", "tr", overrideVersionCode = 1),
|
SingleLang("Gecenin Lordu", "https://geceninlordu.com/", "tr", overrideVersionCode = 1),
|
||||||
SingleLang("Flame Scans", "https://flamescans.org", "en", overrideVersionCode = 2),
|
SingleLang("Flame Scans", "https://flamescans.org", "en", overrideVersionCode = 3),
|
||||||
SingleLang("A Pair of 2+", "https://pairof2.com", "en", className = "APairOf2"),
|
SingleLang("A Pair of 2+", "https://pairof2.com", "en", className = "APairOf2"),
|
||||||
SingleLang("PMScans", "https://reader.pmscans.com", "en"),
|
SingleLang("PMScans", "https://reader.pmscans.com", "en"),
|
||||||
SingleLang("Skull Scans", "https://www.skullscans.com", "en"),
|
SingleLang("Skull Scans", "https://www.skullscans.com", "en"),
|
||||||
|
|
Loading…
Reference in New Issue