Skip to content
This repository has been archived by the owner on Oct 17, 2022. It is now read-only.

Commit

Permalink
修改但列表文件限制
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkLeong committed Nov 2, 2021
1 parent eecdc13 commit 9f00a40
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
2. 通过文件名和文件大小判断是否重复。也就是说如果一个文件即使发生了更新,但其大小没有任何改变,是不会自动上传的
3. 不支持文件名包含 `/` 字符
4. 部分客户端兼容性不好
5. 单列表最大文件数为200


# 免责声明
Expand Down
4 changes: 2 additions & 2 deletions aliyun/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ func GetList(token string, driveId string, parentFileId string) (model.FileListM
postData := make(map[string]interface{})
postData["drive_id"] = driveId
postData["parent_file_id"] = parentFileId
postData["limit"] = 100
postData["all"] = true
postData["limit"] = 200
postData["all"] = false
postData["url_expire_sec"] = 1600
postData["image_thumbnail_process"] = "image/resize,w_400/format,jpeg"
postData["image_url_process"] = "image/resize,w_1920/format,jpeg"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func init() {
cache.Init()
}

var Version = "v1.0.12"
var Version = "v1.0.13"

type Task struct {
Id string `json:"id"`
Expand Down

0 comments on commit 9f00a40

Please sign in to comment.