FIX: allow the cooked_post_processor to download external uploads

This commit is contained in:
Régis Hanol 2015-06-01 20:08:41 +02:00
parent f736b6face
commit 64e73e98fb
2 changed files with 1 additions and 6 deletions

View file

@ -137,7 +137,7 @@ class Upload < ActiveRecord::Base
url = url.sub(/^#{Discourse.asset_host}/i, "") if Discourse.asset_host.present?
# when using s3, we need to replace with the absolute base url
url = url.sub(/^#{SiteSetting.s3_cdn_url}/i, Discourse.store.absolute_base_url) if SiteSetting.s3_cdn_url.present?
Upload.find_by(url: url) if Discourse.store.has_been_uploaded?(url)
Upload.find_by(url: url)
end
def self.fix_image_orientation(path)

View file

@ -141,11 +141,6 @@ describe Upload do
Upload.get_from_url("http://my.cdn.com/uploads/default/1/02395732905.jpg")
end
it "works only when the file has been uploaded" do
Upload.expects(:find_by).never
Upload.get_from_url("http://domain.com/my/file.txt")
end
end
end