FIX: skip hidden posts while generating canonical url.

Previously, while generating the topic page's canoncial url we used the current post number. It will create invalid canonical path if the topic has whsiper posts. Now we only taking the visible posts for current page index calculation.
This commit is contained in:
Vinoth Kannan
2020-07-05 14:04:31 +05:30
parent 6b4cebed3e
commit 06d426bd87
2 changed files with 15 additions and 3 deletions

View File

@@ -122,7 +122,8 @@ class TopicView
if @page > 1
"?page=#{@page}"
else
page = ((@post_number - 1) / @limit) + 1
posts_count = unfiltered_posts.where("post_number <= ?", @post_number).count
page = ((posts_count - 1) / @limit) + 1
page > 1 ? "?page=#{page}" : ""
end