mirror of https://github.com/Xhofe/alist
fix: illegal files are not displayed (close #1729)
parent
1ab73e0742
commit
9181861f47
|
@ -8,7 +8,7 @@ import (
|
||||||
type Addition struct {
|
type Addition struct {
|
||||||
Cookie string `json:"cookie" required:"true"`
|
Cookie string `json:"cookie" required:"true"`
|
||||||
driver.RootID
|
driver.RootID
|
||||||
OrderBy string `json:"order_by" type:"select" options:"file_type,file_name,updated_at" default:"file_name"`
|
OrderBy string `json:"order_by" type:"select" options:"none,file_type,file_name,updated_at" default:"none"`
|
||||||
OrderDirection string `json:"order_direction" type:"select" options:"asc,desc" default:"asc"`
|
OrderDirection string `json:"order_direction" type:"select" options:"asc,desc" default:"asc"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,9 @@ func (d *Quark) GetFiles(parent string) ([]File, error) {
|
||||||
"pdir_fid": parent,
|
"pdir_fid": parent,
|
||||||
"_size": strconv.Itoa(size),
|
"_size": strconv.Itoa(size),
|
||||||
"_fetch_total": "1",
|
"_fetch_total": "1",
|
||||||
"_sort": "file_type:asc," + d.OrderBy + ":" + d.OrderDirection,
|
}
|
||||||
|
if d.OrderBy != "none" {
|
||||||
|
query["_sort"] = "file_type:asc," + d.OrderBy + ":" + d.OrderDirection
|
||||||
}
|
}
|
||||||
for {
|
for {
|
||||||
query["_page"] = strconv.Itoa(page)
|
query["_page"] = strconv.Itoa(page)
|
||||||
|
|
Loading…
Reference in New Issue