From f4e354afffe254e65c2a27e299b9ce2e86f70810 Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX <j.jaffeux@gmail.com> Date: Mon, 24 Jun 2019 12:39:34 +0200 Subject: [PATCH] FIX: ensures url to full reviewable conversation works on subfolder --- lib/reviewable/conversation.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reviewable/conversation.rb b/lib/reviewable/conversation.rb index 54e6b54cff0..4fc44c0adfc 100644 --- a/lib/reviewable/conversation.rb +++ b/lib/reviewable/conversation.rb @@ -20,7 +20,7 @@ class Reviewable < ActiveRecord::Base def initialize(meta_topic) @id = meta_topic.id @has_more = false - @permalink = "#{Discourse.base_url}#{meta_topic.relative_url}" + @permalink = "#{Discourse.base_url_no_prefix}#{meta_topic.relative_url}" @posts = [] meta_posts = meta_topic.ordered_posts.where(post_type: ::Post.types[:regular]).limit(2)