canonicurl 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/canonicurl/cache.rb +1 -0
- data/lib/canonicurl/version.rb +1 -1
- metadata +3 -3
data/lib/canonicurl/cache.rb
CHANGED
|
@@ -88,6 +88,7 @@ module Canonicurl
|
|
|
88
88
|
status = http.response_header.status.to_i
|
|
89
89
|
case status
|
|
90
90
|
when 200...300
|
|
91
|
+
http.last_effective_url.port = nil if http.last_effective_url.port == 80 # don't show default port 80
|
|
91
92
|
canonical_url = http.last_effective_url.to_s
|
|
92
93
|
set url, canonical_url, url_key
|
|
93
94
|
callbacks[:resolved].call(canonical_url, http) if callbacks[:resolved]
|
data/lib/canonicurl/version.rb
CHANGED
metadata
CHANGED