From: Nenad Vujicic Date: Wed, 19 Feb 2025 15:10:10 +0000 (+0100) Subject: Improves dropping of first note's comment X-Git-Tag: live~126^2~2 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/bdf3abeb07354e6424e8ed892ef48bbb6b823ea6 Improves dropping of first note's comment Improves calculating comments to be displayed by dropping first comment only if it is opening. --- diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index 5d817c9c6..fbeb01b76 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -43,7 +43,7 @@ class NotesController < ApplicationController @note_includes_anonymous = @note.author.nil? || @note_comments.find { |comment| comment.author.nil? } - @note_comments = @note_comments.drop(1) if @note.author.nil? || @note.author.active? + @note_comments = @note_comments.drop(1) if @note_comments.first&.event == "opened" rescue ActiveRecord::RecordNotFound render :template => "browse/not_found", :status => :not_found end