lib/onebox/engine/mixcloud_onebox.rb in onebox-1.7.3 vs lib/onebox/engine/mixcloud_onebox.rb in onebox-1.7.4

- old
+ new

@@ -7,10 +7,11 @@ matches_regexp(/^https?:\/\/www\.mixcloud\.com\//) always_https def placeholder_html oembed = get_oembed - "<img src='#{oembed[:image]}' height='#{oembed[:height]}' #{Helpers.title_attr(oembed)}>" + escaped_src = ::Onebox::Helpers.normalize_url_for_output(oembed[:image]) + "<img src='#{escaped_src}' height='#{oembed[:height]}' #{Helpers.title_attr(oembed)}>" end def to_html get_oembed[:html] end