FIX: youtube preview video title link doesn't work

This commit is contained in:
Régis Hanol
2015-04-01 18:23:27 +02:00
parent 87ef1d0de1
commit 0f4a4651a9
6 changed files with 16 additions and 28 deletions

View File

@@ -52,7 +52,7 @@ class TopicLinkClick < ActiveRecord::Base
# If we have it somewhere else on the site, just allow the redirect.
# This is likely due to a onebox of another topic.
link = TopicLink.find_by(url: url)
return link.present? ? link.url : nil
return link.present? ? link.url : url
end
return url if args[:user_id] && link.user_id == args[:user_id]