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:
parent
51f072c73f
commit
12daa92f2f
|
@ -6,7 +6,7 @@ ext {
|
|||
extName = 'Tao Sect'
|
||||
pkgNameSuffix = 'pt.taosect'
|
||||
extClass = '.TaoSect'
|
||||
extVersionCode = 11
|
||||
extVersionCode = 12
|
||||
containsNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -280,7 +280,7 @@ class TaoSect : HttpSource() {
|
|||
.addQueryParameter("projeto", projectSlug)
|
||||
.addQueryParameter("per_page", "1000")
|
||||
.addQueryParameter("order", "desc")
|
||||
.addQueryParameter("orderby", "date")
|
||||
.addQueryParameter("orderby", "sequencia")
|
||||
.addQueryParameter("_fields", "nome_capitulo,post_id,slug,data_insercao")
|
||||
.toString()
|
||||
|
||||
|
|
Loading…
Reference in New Issue