Skip to content

Commit

Permalink
Do not change the casing
Browse files Browse the repository at this point in the history
  • Loading branch information
evermeer committed Dec 2, 2015
1 parent d8adb01 commit 1adc11d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EVURLCache.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pod::Spec.new do |s|
#

s.name = "EVURLCache"
s.version = "2.0.1"
s.version = "2.0.2"
s.summary = "NSURLCache subclass for handeling all web requests that use NSURLRequest"
s.description = "This is a NSURLCache subclass for handeling all web requests that use NSURLRequest. (This includes UIWebView)"
s.homepage = "https://github.com/evermeer/EVURLCache"
Expand Down
2 changes: 1 addition & 1 deletion EVURLCache/Pod/EVURLCache.swift
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public class EVURLCache : NSURLCache {
if let cacheKey = request.valueForHTTPHeaderField(URLCACHE_CACHE_KEY) {
localUrl = "\(rootPath)/\(host)/\(cacheKey)"
} else {
if let path = request.URL?.relativePath?.lowercaseString {
if let path = request.URL?.relativePath {
localUrl = "\(rootPath)/\(host)\(path)"
}
}
Expand Down

0 comments on commit 1adc11d

Please sign in to comment.