parent
23c7ebfeb7
commit
f9c39ed8e1
|
@ -5,7 +5,7 @@ ext {
|
|||
appName = 'Tachiyomi: Kissmanga'
|
||||
pkgNameSuffix = 'en.kissmanga'
|
||||
extClass = '.Kissmanga'
|
||||
extVersionCode = 15
|
||||
extVersionCode = 16
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -182,7 +182,10 @@ class Kissmanga : ParsedHttpSource() {
|
|||
}
|
||||
|
||||
// Finally find all the urls and decrypt them in JS.
|
||||
p = Pattern.compile("""lstIA.push\((.*)\);""")
|
||||
// To fix this randomize thing
|
||||
var x = Pattern.compile("(.*)[(]wrapKA")
|
||||
var y = x.matcher(body)
|
||||
p = Pattern.compile("""$y.group(1)\((.*)\);""")
|
||||
m = p.matcher(body)
|
||||
|
||||
var i = 0
|
||||
|
|
Loading…
Reference in New Issue