fix(123pan): use local sort (close #6820)

This commit is contained in:
Andy Hsu
2024-07-21 20:29:32 +08:00
parent 2d57529e77
commit cbd4bef814
4 changed files with 14 additions and 11 deletions

View File

@ -92,8 +92,8 @@ func (d *Pan123Share) getFiles(parentId string) ([]File, error) {
query := map[string]string{
"limit": "100",
"next": "0",
"orderBy": d.OrderBy,
"orderDirection": d.OrderDirection,
"orderBy": "file_id",
"orderDirection": "desc",
"parentFileId": parentId,
"Page": strconv.Itoa(page),
"shareKey": d.ShareKey,