You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 5, 2020. It is now read-only.
Guys, When I try to complete a project under Swift 4, using S3SignerAWS, Xcode suggests a code change in the following function:
}
to
internal func canonicalHeaders(
headers: [String: String])
-> String
{
let headerList = Array(headers.keys)
.map { "($0.lowercased()):(headers[$0]!)" }
.filter { $0 != "authorization" }
.sorted { $0.0.localizedCompare($0.1) == ComparisonResult.orderedAscending }
.joined(separator: "\n")
.appending("\n")
This then causes other syntax issues.
Kind regards, Phil
The text was updated successfully, but these errors were encountered: