mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
FIX: Uploads not being linked correctly to posts.
Regression due to 1f636c445b
.
This commit is contained in:
parent
d1984a0b4d
commit
b3469bea2d
@ -177,7 +177,7 @@ class Upload < ActiveRecord::Base
|
||||
end
|
||||
|
||||
return if uri&.path.blank?
|
||||
data = uri.path.match(/(\/original\/\dX\/[\/\.\w]+\/([a-zA-Z0-9]+)[\.\w]+)/)
|
||||
data = uri.path.match(/(\/original\/\dX[\/\.\w]*\/([a-zA-Z0-9]+)[\.\w]+)/)
|
||||
return if data.blank?
|
||||
sha1 = data[2]
|
||||
upload = nil
|
||||
|
@ -82,6 +82,15 @@ describe Upload do
|
||||
expect(Upload.get_from_url(upload.url)).to eq(upload)
|
||||
end
|
||||
|
||||
describe 'for a url without a tree' do
|
||||
let(:url) { "/uploads/default/original/1X/#{sha1}.png" }
|
||||
let(:upload) { Fabricate(:upload, url: url, sha1: sha1) }
|
||||
|
||||
it 'should return the right upload' do
|
||||
expect(Upload.get_from_url(upload.url)).to eq(upload)
|
||||
end
|
||||
end
|
||||
|
||||
it "works when using a cdn" do
|
||||
begin
|
||||
original_asset_host = Rails.configuration.action_controller.asset_host
|
||||
|
Loading…
Reference in New Issue
Block a user