mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 08:07:48 +01:00
Update dependency org.jsoup:jsoup to v1.15.3
This commit is contained in:
parent
b79340989f
commit
3b34a878a7
2 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ class EpubFile(file: File) : Closeable {
|
|||
*/
|
||||
private fun getPagesFromDocument(document: Document): List<String> {
|
||||
val pages = document.select("manifest > item")
|
||||
.filter { "application/xhtml+xml" == it.attr("media-type") }
|
||||
.filter { node -> "application/xhtml+xml" == node.attr("media-type") }
|
||||
.associateBy { it.attr("id") }
|
||||
|
||||
val spine = document.select("spine > itemref").map { it.attr("idref") }
|
||||
|
|
|
@ -27,7 +27,7 @@ conscrypt-android = "org.conscrypt:conscrypt-android:2.5.2"
|
|||
|
||||
quickjs-android = "app.cash.quickjs:quickjs-android:0.9.2"
|
||||
|
||||
jsoup = "org.jsoup:jsoup:1.14.3"
|
||||
jsoup = "org.jsoup:jsoup:1.15.3"
|
||||
|
||||
disklrucache = "com.jakewharton:disklrucache:2.0.2"
|
||||
unifile = "com.github.tachiyomiorg:unifile:17bec43"
|
||||
|
|
Loading…
Reference in a new issue