Skip to content

Commit

Permalink
fixing target path for when URI needs encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
gligorkot committed May 25, 2020
1 parent 11d2a82 commit befbcf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Core/Networking.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ extension Networking {
if target.ignoreBaseURL {
url = target.path
} else {
url = target.baseURL.appendingPathComponent(target.path).absoluteString
url = target.baseURL.absoluteString + target.path
}
return Endpoint(url: url, sampleResponseClosure: stubResponseClosure, method: target.method, task: target.task, httpHeaderFields: httpHeaderFields)
}
Expand Down
2 changes: 1 addition & 1 deletion GKNetworkingKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'GKNetworkingKit'
s.version = '2.0.0'
s.version = '2.0.1'
s.summary = 'GKNetworkingKit framework.'
s.description = <<-DESC
* GKNetworkingKit framework
Expand Down

0 comments on commit befbcf5

Please sign in to comment.