]> git.openstreetmap.org Git - rails.git/commitdiff
Force notes list to be realised in notes#mine
authorTom Hughes <tom@compton.nu>
Mon, 10 Jun 2013 22:45:06 +0000 (23:45 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 10 Jun 2013 22:45:06 +0000 (23:45 +0100)
There is a rails bug which means that using count on a relation
that uses uniq and offset/limit and which hasn't been realised
yet will always return one, so force it to be realised.

app/controllers/notes_controller.rb

index 3923cb2d04ac44c4b5a4ab1797f7d3dc24242586..f59e9974e10dac2dfcc7fb75aa6ae6f4fc3d287a 100644 (file)
@@ -279,7 +279,7 @@ class NotesController < ApplicationController
         @description = t 'note.mine.subheading', :user => render_to_string(:partial => "user", :object => @this_user)
         @page = (params[:page] || 1).to_i 
         @page_size = 10
-        @notes = @this_user.notes.order("updated_at DESC, id").uniq.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author)
+        @notes = @this_user.notes.order("updated_at DESC, id").uniq.offset((@page - 1) * @page_size).limit(@page_size).preload(:comments => :author).all
       else
         @title = t 'user.no_such_user.title' 
         @not_found_user = params[:display_name]