Skip to content

Commit 36e0d6f

Browse files
committed
perf(onedrive): optimize request parameter (close #3178)
1 parent 3d0065b commit 36e0d6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/onedrive/util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (d *Onedrive) Request(url string, method string, callback base.ReqCallback,
127127

128128
func (d *Onedrive) getFiles(path string) ([]File, error) {
129129
var res []File
130-
nextLink := d.GetMetaUrl(false, path) + "/children?$expand=thumbnails"
130+
nextLink := d.GetMetaUrl(false, path) + "/children?$top=5000&$expand=thumbnails($select=medium)&$select=id,name,size,lastModifiedDateTime,content.downloadUrl,file,parentReference"
131131
for nextLink != "" {
132132
var files Files
133133
_, err := d.Request(nextLink, http.MethodGet, nil, &files)

0 commit comments

Comments
 (0)