Change multipart form boundary string

This commit is contained in:
Sami Samhuri 2021-01-07 13:42:36 -08:00
parent e383d188f2
commit 3f17ecb3af
No known key found for this signature in database
GPG key ID: 4B4195422742FC16

View file

@ -79,7 +79,7 @@ final class MultipartFormEncoder {
let boundary: String
init(boundary: String? = nil) {
self.boundary = boundary ?? "VidjoIsCool-\(UUID().uuidString)"
self.boundary = boundary ?? "Osiris-\(UUID().uuidString)"
}
func encodeData(parts: [Part]) throws -> BodyData {