From 378bab32f1600bbc149b507e88e6f4d24ece8c75 Mon Sep 17 00:00:00 2001 From: wenmig Date: Sat, 17 Jun 2023 20:10:34 +0800 Subject: [PATCH] chore(aliyundrive_share): increase the `limit` of the list api (#4588) --- drivers/aliyundrive_share/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/aliyundrive_share/util.go b/drivers/aliyundrive_share/util.go index 49331c5b..58e0c683 100644 --- a/drivers/aliyundrive_share/util.go +++ b/drivers/aliyundrive_share/util.go @@ -91,7 +91,7 @@ func (d *AliyundriveShare) getFiles(fileId string) ([]File, error) { data := base.Json{ "image_thumbnail_process": "image/resize,w_160/format,jpeg", "image_url_process": "image/resize,w_1920/format,jpeg", - "limit": 100, + "limit": 200, "order_by": d.OrderBy, "order_direction": d.OrderDirection, "parent_file_id": fileId,