X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/0f2df0b9efcfff1d6bb0f7b2d16fa23f85d8708d..6a50a5e871db2e35eeb20f5707e467fe1442583b:/app/controllers/notes_controller.rb?ds=sidebyside diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index 4b4f3d651..5d817c9c6 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -40,6 +40,10 @@ class NotesController < ApplicationController @note = Note.visible.find(params[:id]) @note_comments = @note.comments end + + @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? rescue ActiveRecord::RecordNotFound render :template => "browse/not_found", :status => :not_found end