]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/notes_controller.rb
Use distinct instead of uniq which is deprecated
[rails.git] / app / controllers / notes_controller.rb
index 13e930ca53abc997f3178a679c691ecbb6dc0d88..1de58af906d5ea3e3f24a5799ea1fe2a599ce6a6 100644 (file)
@@ -285,7 +285,7 @@ class NotesController < ApplicationController
         @page_size = 10
         @notes = @this_user.notes
         @notes = @notes.visible unless @user && @user.moderator?
-        @notes = @notes.order("updated_at DESC, id").uniq.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author).to_a
+        @notes = @notes.order("updated_at DESC, id").distinct.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author).to_a
       else
         @title = t "user.no_such_user.title"
         @not_found_user = params[:display_name]