]> git.openstreetmap.org Git - rails.git/commitdiff
Keep the behaviour backwards-compatible
authorENT8R <info.ent8r@gmail.com>
Wed, 19 Feb 2020 11:58:47 +0000 (12:58 +0100)
committerENT8R <info.ent8r@gmail.com>
Wed, 19 Feb 2020 11:58:47 +0000 (12:58 +0100)
app/controllers/api/notes_controller.rb

index 703f275aa5a2a5c018250d5b3ae88764b34954ca..a73240e5fabc4f849780cbcb9e2dd42a26c30352 100644 (file)
@@ -294,10 +294,14 @@ module Api
           raise OSM::APIBadUserInput, "Date #{params[:to]} is in a wrong format"
         end
 
-        @notes = params[:sort] == "created_at" ? @notes.where(:created_at => from..to) : @notes.where(:updated_at => from..to)
+        @notes = if params[:sort] == "updated_at"
+                   @notes.where(:updated_at => from..to)
+                 else
+                   @notes.where(:created_at => from..to)
+                 end
       end
 
-      # Find the notes we want to return
+      # Choose the sort order
       @notes = if params[:sort] == "created_at"
                  if params[:order] == "oldest"
                    @notes.order("created_at ASC")
@@ -312,6 +316,7 @@ module Api
                  end
                end
 
+      # Find the notes we want to return
       @notes = @notes.distinct.limit(result_limit).preload(:comments)
 
       # Render the result