Explorar o código

Update custom encoding section of Readme.md (#2035)

urlRequest property of URLRequestConvertible is optional, so you have to unwrap it or make non-optional.
Jorge Lucena %!s(int64=8) %!d(string=hai) anos
pai
achega
13a6ecafec
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -491,7 +491,7 @@ struct JSONStringArrayEncoding: ParameterEncoding {
     }
 
     func encode(_ urlRequest: URLRequestConvertible, with parameters: Parameters?) throws -> URLRequest {
-        var urlRequest = urlRequest.urlRequest
+        var urlRequest = try urlRequest.asURLRequest()
 
         let data = try JSONSerialization.data(withJSONObject: array, options: [])