VIZ: fix chapters in reverse order for logged-in users. (#9051)

* VIZ: fix chapters in reverse order for logged-in users.

* bump
This commit is contained in:
lamaxama 2025-06-02 00:31:20 +08:00 committed by Draff
parent 22f8330387
commit 3b4759ef5a
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'VIZ'
extClass = '.VizFactory'
extVersionCode = 21
extVersionCode = 22
isNsfw = false
}

View File

@ -197,6 +197,7 @@ open class Viz(
url = url.substringAfter("'").substringBeforeLast("'") + "&locked=true"
}
}
.sortedByDescending { it.chapter_number }
}
return allChapters.filter { !it.url.startsWith("javascript") }