mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
FIX: embedding topics would fail with some HTML
When truncating content we try to search for first paragraph, if HTML had no P it would fallback to first div which may have nested elements.
This commit is contained in:
parent
3c44e54c3f
commit
2408d55551
@ -227,7 +227,7 @@ class TopicEmbed < ActiveRecord::Base
|
||||
return result unless result.blank?
|
||||
|
||||
# If there is no first paragaph, return the first div (onebox)
|
||||
doc.css('div').first
|
||||
doc.css('div').first.to_s
|
||||
end
|
||||
|
||||
def self.expanded_for(post)
|
||||
|
@ -105,6 +105,16 @@ describe TopicEmbed do
|
||||
|
||||
expect(post.raw).to include(long_content)
|
||||
end
|
||||
|
||||
it 'looks at first div when there is no paragraph' do
|
||||
|
||||
no_para = "<div><h>testing it</h></div>"
|
||||
|
||||
SiteSetting.embed_truncate = true
|
||||
post = TopicEmbed.import(user, url, title, no_para)
|
||||
|
||||
expect(post.raw).to include("testing it")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user