fix a bug with emailing in posts going to tumblr
This commit is contained in:
parent
e6e15483cd
commit
e865dfc269
2 changed files with 2 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ class Services::Tumblr < Service
|
|||
post.photos.each do |photo|
|
||||
html += "<img src='#{photo.url(:scaled_full)}'/><br>"
|
||||
end
|
||||
html += auto_link(post.text)
|
||||
html += auto_link(post.text, :link => :urls)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@
|
|||
= image_tag(photo.url(:scaled_full))
|
||||
%br
|
||||
%br
|
||||
= auto_link(post.text)
|
||||
= auto_link(post.text, :link => :urls)
|
||||
|
|
|
|||
Loading…
Reference in a new issue