diff --git a/assets b/assets index f297f33..4f146a6 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit f297f331f93732c397537d201b118417487284f3 +Subproject commit 4f146a643bebec30e13866bef92cb3327b587fb3 diff --git a/pkg/filesystem/driver/onedrive/api.go b/pkg/filesystem/driver/onedrive/api.go index 519fc4c..5c58344 100644 --- a/pkg/filesystem/driver/onedrive/api.go +++ b/pkg/filesystem/driver/onedrive/api.go @@ -347,10 +347,12 @@ func (client *Client) makeBatchDeleteRequestsBody(files []string) string { } for i, v := range files { v = strings.TrimPrefix(v, "/") + filePath, _ := url.Parse("/me/drive/root:/") + filePath.Path = path.Join(filePath.Path, v) req.Requests[i] = BatchRequest{ ID: v, Method: "DELETE", - URL: "me/drive/root:/" + v, + URL: filePath.EscapedPath(), } }