mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
FIX: s3 cdn would break cooking if <img> tag had no src
This commit is contained in:
parent
677cdbbda0
commit
b7a0a295c0
2 changed files with 4 additions and 2 deletions
|
@ -224,6 +224,7 @@ module PrettyText
|
|||
|
||||
def self.add_s3_cdn(doc)
|
||||
doc.css("img").each do |img|
|
||||
next unless img["src"]
|
||||
img["src"] = img["src"].sub(Discourse.store.absolute_base_url, SiteSetting.s3_cdn_url)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue