Fix wrong chapter order in TaoSect (#9234)

* Fix wrong chapter order in TaoSect.

* Remove unused GET parameters.

* Make sorting to be done by the API.
This commit is contained in:
Alessandro Jean 2021-09-27 11:11:33 -03:00 committed by GitHub
parent 51f072c73f
commit 12daa92f2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ ext {
extName = 'Tao Sect' extName = 'Tao Sect'
pkgNameSuffix = 'pt.taosect' pkgNameSuffix = 'pt.taosect'
extClass = '.TaoSect' extClass = '.TaoSect'
extVersionCode = 11 extVersionCode = 12
containsNsfw = true containsNsfw = true
} }

View File

@ -280,7 +280,7 @@ class TaoSect : HttpSource() {
.addQueryParameter("projeto", projectSlug) .addQueryParameter("projeto", projectSlug)
.addQueryParameter("per_page", "1000") .addQueryParameter("per_page", "1000")
.addQueryParameter("order", "desc") .addQueryParameter("order", "desc")
.addQueryParameter("orderby", "date") .addQueryParameter("orderby", "sequencia")
.addQueryParameter("_fields", "nome_capitulo,post_id,slug,data_insercao") .addQueryParameter("_fields", "nome_capitulo,post_id,slug,data_insercao")
.toString() .toString()