File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ extension HTTPClient {
1212 interceptors. append (
1313 RetryRequestInterceptor (
1414 retryableHTTPMethods: RetryRequestInterceptor . defaultRetryableHTTPMethods. union (
15- [ . post] // Add POST method so refresh token are also retried.
15+ [ . post] // Add POST method so refresh token are also retried.
1616 )
1717 )
1818 )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ extension HTTPField.Name {
1818}
1919
2020let API_VERSIONS : [ APIVersion . Name : APIVersion ] = [
21- . _20240101: . _20240101,
21+ . _20240101: . _20240101
2222]
2323
2424struct APIVersion {
Original file line number Diff line number Diff line change 3434 /// - Returns: Data and response.
3535 public func upload(
3636 for request: HTTPRequest ,
37- from bodyData: Data ) async throws -> ( Data , HTTPResponse ) {
37+ from bodyData: Data
38+ ) async throws -> ( Data , HTTPResponse ) {
3839 guard let urlRequest = URLRequest ( httpRequest: request) else {
3940 throw HTTPTypeConversionError . failedToConvertHTTPRequestToURLRequest
4041 }
You can’t perform that action at this time.
0 commit comments