瀏覽代碼

Fix kissmanga not loading for some people after the previous update

inorichi 6 年之前
父節點
當前提交
c6cfd24f19
共有 1 個文件被更改,包括 11 次插入3 次删除
  1. 11 3
      app/src/main/java/eu/kanade/tachiyomi/source/online/english/Kissmanga.kt

+ 11 - 3
app/src/main/java/eu/kanade/tachiyomi/source/online/english/Kissmanga.kt

@@ -154,9 +154,17 @@ class Kissmanga : ParsedHttpSource() {
             it.evaluate(ca)
             it.evaluate(ca)
             it.evaluate(lo)
             it.evaluate(lo)
 
 
-            // Find all the urls and decrypt them in JS.
-            val p = Pattern.compile("""lstImages.push\((.*)\);""")
-            val m = p.matcher(body)
+            // There are two functions in an inline script needed to decrypt the urls. We find and
+            // execute them.
+            var p = Pattern.compile("(var.*CryptoJS.*)")
+            var m = p.matcher(body)
+            while (m.find()) {
+                it.evaluate(m.group(1))
+            }
+
+            // Finally find all the urls and decrypt them in JS.
+            p = Pattern.compile("""lstImages.push\((.*)\);""")
+            m = p.matcher(body)
 
 
             var i = 0
             var i = 0
             while (m.find()) {
             while (m.find()) {