diff --git a/app/models/services/tumblr.rb b/app/models/services/tumblr.rb
index 08af6fa8c..8a8196747 100644
--- a/app/models/services/tumblr.rb
+++ b/app/models/services/tumblr.rb
@@ -38,7 +38,7 @@ class Services::Tumblr < Service
post.photos.each do |photo|
html += "})
"
end
- html += auto_link(post.text)
+ html += auto_link(post.text, :link => :urls)
end
end
diff --git a/app/views/services/tumblr.html.haml b/app/views/services/tumblr.html.haml
index ae8a6a9d7..070e3f134 100644
--- a/app/views/services/tumblr.html.haml
+++ b/app/views/services/tumblr.html.haml
@@ -2,4 +2,4 @@
= image_tag(photo.url(:scaled_full))
%br
%br
-= auto_link(post.text)
+= auto_link(post.text, :link => :urls)