Colamanga: fix keyType not found (#7352)
This commit is contained in:
parent
f632d3636f
commit
4500fc3584
|
@ -2,7 +2,7 @@ plugins {
|
||||||
id("lib-multisrc")
|
id("lib-multisrc")
|
||||||
}
|
}
|
||||||
|
|
||||||
baseVersionCode = 6
|
baseVersionCode = 7
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":lib:synchrony"))
|
api(project(":lib:synchrony"))
|
||||||
|
|
|
@ -283,7 +283,7 @@ abstract class ColaManga(
|
||||||
val readJs = Deobfuscator.deobfuscateScript(obfuscatedReadJs)
|
val readJs = Deobfuscator.deobfuscateScript(obfuscatedReadJs)
|
||||||
?: throw Exception(intl.couldNotDeobufscateScript)
|
?: 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) {
|
private fun randomString() = buildString(15) {
|
||||||
|
|
Loading…
Reference in New Issue