only encode if current path is broken

This commit is contained in:
Thomas Reynolds 2016-05-25 11:25:24 -07:00
parent 4ffaa9dde5
commit 51ccfe1143

View file

@ -157,12 +157,16 @@ module Middleman
end end
# Try to parse URL # Try to parse URL
begin
uri = URI(url)
rescue ::URI::InvalidURIError
begin begin
uri = URI(::URI.encode(url)) uri = URI(::URI.encode(url))
rescue ::URI::InvalidURIError rescue ::URI::InvalidURIError
# Nothing we can do with it, it's not really a URI # Nothing we can do with it, it's not really a URI
return url return url
end end
end
relative = options[:relative] relative = options[:relative]
raise "Can't use the relative option with an external URL" if relative && uri.host raise "Can't use the relative option with an external URL" if relative && uri.host