Bläddra i källkod

Use URI.join for generate asset URL (#2741)

* Use URI.join for generate asset URL

* to String
master
Yamagishi Kazutoshi 7 år sedan
committed by Eugen Rochko
förälder
incheckning
2ab7dc9a55
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      app/helpers/routing_helper.rb

+ 1
- 1
app/helpers/routing_helper.rb Visa fil

@@ -12,6 +12,6 @@ module RoutingHelper
end

def full_asset_url(source)
Rails.configuration.x.use_s3 ? source : File.join(root_url, ActionController::Base.helpers.asset_url(source))
Rails.configuration.x.use_s3 ? source : URI.join(root_url, ActionController::Base.helpers.asset_url(source)).to_s
end
end

Laddar…
Avbryt
Spara