about summary refs log tree commit diff
path: root/app/helpers/routing_helper.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-06 20:43:16 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-06 20:43:16 +0100
commitd14967e1c825eae1288c7a5bb1a30f49f174f857 (patch)
tree3750d94275b1393d378ee48bdd8c8b7411f3b505 /app/helpers/routing_helper.rb
parent45230c56ab10cd40d7a2e6e241dd30ae4e40e6b0 (diff)
Fix URL configuration when S3 is enabled
Diffstat (limited to 'app/helpers/routing_helper.rb')
-rw-r--r--app/helpers/routing_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/routing_helper.rb b/app/helpers/routing_helper.rb
index 101382604..0512a4e0a 100644
--- a/app/helpers/routing_helper.rb
+++ b/app/helpers/routing_helper.rb
@@ -10,6 +10,6 @@ module RoutingHelper
   end
 
   def full_asset_url(source)
-    File.join(root_url, ActionController::Base.helpers.asset_url(source))
+    Rails.configuration.x.use_s3 ? source : File.join(root_url, ActionController::Base.helpers.asset_url(source))
   end
 end