FIX: include youtube link in embedded comments

This commit is contained in:
Arpit Jalan
2015-05-01 18:34:45 +05:30
parent 80003e0821
commit 23fd16850a
3 changed files with 12 additions and 4 deletions

View File

@ -41,7 +41,7 @@ class EmbedController < ApplicationController
topic_embeds = TopicEmbed.where(embed_url: urls).includes(:topic).references(:topic)
topic_embeds.each do |te|
url = te.embed_url
url = te.embed_url
url = "#{url}#discourse-comments" unless params[:embed_url].include?(url)
by_url[url] = I18n.t('embed.replies', count: te.topic.posts_count - 1)
end