Fix "Page list empty" for KissManga (#2757)

Fix "Page list empty" for KissManga
This commit is contained in:
i404788 2020-04-22 17:24:30 +01:00 committed by GitHub
parent c29e850685
commit c250781302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Kissmanga'
pkgNameSuffix = 'en.kissmanga'
extClass = '.Kissmanga'
extVersionCode = 13
extVersionCode = 14
libVersion = '1.2'
}

View File

@ -182,7 +182,7 @@ class Kissmanga : ParsedHttpSource() {
}
// Finally find all the urls and decrypt them in JS.
p = Pattern.compile("""lstImages.push\((.*)\);""")
p = Pattern.compile("""lstIA.push\((.*)\);""")
m = p.matcher(body)
var i = 0