This commit is contained in:
Georg Gadinger 2017-03-31 23:35:45 +02:00
parent 249fd96f9b
commit 07d513f5f5
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ class Exporter
File.open target_file, 'wb' do |f|
f.binmode
data = if url.start_with?('/system')
File.read(Rails.root.join('public', url))
File.read(Rails.root.join('public', url.sub(%r(\A/+), '')))
else
HTTParty.get(url).parsed_response
end
@ -98,7 +98,7 @@ class Exporter
File.open target_file, 'wb' do |f|
f.binmode
data = if url.start_with?('/system')
File.read(Rails.root.join('public', url))
File.read(Rails.root.join('public', url.sub(%r(\A/+), '')))
else
HTTParty.get(url).parsed_response
end