Colamanga: fix keyType not found (#7352)

This commit is contained in:
Vetle Ledaal 2025-01-28 12:37:54 +01:00 committed by Draff
parent f632d3636f
commit 4500fc3584
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 6
baseVersionCode = 7
dependencies {
api(project(":lib:synchrony"))

View File

@ -283,7 +283,7 @@ abstract class ColaManga(
val readJs = Deobfuscator.deobfuscateScript(obfuscatedReadJs)
?: throw Exception(intl.couldNotDeobufscateScript)
keyMappingRegex.findAll(readJs).associate { it.groups[1]!!.value to it.groups[2]!!.value }
keyMappingRegex.findAll(readJs).associate { it.groups[2]!!.value to it.groups[3]!!.value }
}
private fun randomString() = buildString(15) {