Post processing of images adds prefix second time when post processing a post with one or more images if running with a prefix

This commit is contained in:
Wojciech Kocjan
2013-04-05 12:38:20 +02:00
parent 5273657537
commit 68bdab6635
2 changed files with 6 additions and 3 deletions

View File

@ -45,7 +45,7 @@ class CookedPostProcessor
images.each do |img|
src = img['src']
src = Discourse.base_url + src if src[0] == "/"
src = Discourse.base_url_no_prefix + src if src[0] == "/"
if src.present? && (img['width'].blank? || img['height'].blank?)