We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f6d260 commit 3221930Copy full SHA for 3221930
Flat/Modules/CloudStorage/Upload/UploadService.swift
@@ -216,6 +216,7 @@ class UploadService {
216
.percentEncodedPath
217
.split(separator: "/")
218
.last ?? "")
219
+ .replacingOccurrences(of: "+", with: "%2B") // 阿里云文件名里的 + 需要 percent encode.
220
221
let partFormData = MultipartFormData(fileManager: FileManager.default, boundary: boundary)
222
let headers: [(String, String)] = [
0 commit comments