Parcourir la source

Bugfix on save instance state. Also improve initial page loading on Kissmanga

inorichi il y a 6 ans
Parent
commit
10f36f40d6

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

@@ -154,17 +154,9 @@ class Kissmanga : ParsedHttpSource() {
             it.evaluate(ca)
             it.evaluate(lo)
 
-            // There are two functions in an inline script needed to decrypt the urls. We find and
-            // execute them.
-            var p = Pattern.compile("(.*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)
+            // Find all the urls and decrypt them in JS.
+            val p = Pattern.compile("""lstImages.push\((.*)\);""")
+            val m = p.matcher(body)
 
             var i = 0
             while (m.find()) {
@@ -244,4 +236,4 @@ class Kissmanga : ParsedHttpSource() {
             Genre("Yaoi"),
             Genre("Yuri")
     )
-}
+}

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/extension/ExtensionGroupHolder.kt

@@ -8,7 +8,7 @@ import eu.kanade.tachiyomi.ui.base.holder.BaseFlexibleViewHolder
 import kotlinx.android.synthetic.main.extension_card_header.*
 
 class ExtensionGroupHolder(view: View, adapter: FlexibleAdapter<*>) :
-        BaseFlexibleViewHolder(view, adapter, true) {
+        BaseFlexibleViewHolder(view, adapter) {
 
     @SuppressLint("SetTextI18n")
     fun bind(item: ExtensionGroupItem) {