Skip to content

Commit

Permalink
adapter: Fix a double self
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonycastelli committed May 4, 2018
1 parent 676ac65 commit 83c2ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/S3Storage/S3Adapter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ extension S3Adapter {
guard let url = URL(string: self.region.host + bucket.finished(with: "/") + object) else {
throw S3AdapterError(identifier: "get", reason: "Couldnt not generate a valid URL path.", source: .capture())
}
let headers = try self.self.signer.authHeader(for: .GET, to: url, payload: .none)
let headers = try self.signer.authHeader(for: .GET, to: url, payload: .none)
let request = Request(using: container)
request.http.method = .GET
request.http.headers = headers
Expand Down

0 comments on commit 83c2ee4

Please sign in to comment.