Asura Scans: Rate tweak (#10626)

* Asura Scans: Bump versionCode

* Asura Scans: Adjust rateLimit
This commit is contained in:
Smol Ame 2025-09-18 22:55:19 -08:00 committed by Draff
parent 12b907aee8
commit 384206b02e
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext { ext {
extName = 'Asura Scans' extName = 'Asura Scans'
extClass = '.AsuraScans' extClass = '.AsuraScans'
extVersionCode = 47 extVersionCode = 48
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -66,7 +66,7 @@ class AsuraScans : ParsedHttpSource(), ConfigurableSource {
override val client = network.cloudflareClient.newBuilder() override val client = network.cloudflareClient.newBuilder()
.addInterceptor(::forceHighQualityInterceptor) .addInterceptor(::forceHighQualityInterceptor)
.rateLimit(1, 3) .rateLimit(2, 2)
.build() .build()
private var failedHighQuality = false private var failedHighQuality = false