From 1a782acd9cd9812c702b27ecca8a169c60e987f5 Mon Sep 17 00:00:00 2001 From: Ayke Halder Date: Fri, 12 Jan 2024 11:59:03 +0100 Subject: [PATCH] FIX: set microdata schema for topic on missing first post (#25195) Some attributes of the microdata schema `DiscussionForumPosting` are rendered in the context of the first post. Ensure these attributes are also set if the first post is not part of the current view. --- app/views/topics/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/topics/show.html.erb b/app/views/topics/show.html.erb index f798ba319ce..5cc3387360f 100644 --- a/app/views/topics/show.html.erb +++ b/app/views/topics/show.html.erb @@ -51,7 +51,7 @@ <% end %> - <% if @topic_view.prev_page %> + <% if @topic_view.posts&.first && !@topic_view.posts.first.is_first_post? %>