X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/30201e9e7f5954c336912515e486d4aaa5c34252..9619e699e1daf2ec1127cdf0bba7ffe2aa3bbb0c:/app/controllers/traces_controller.rb diff --git a/app/controllers/traces_controller.rb b/app/controllers/traces_controller.rb index 4f263e9b2..0b7dbc94a 100644 --- a/app/controllers/traces_controller.rb +++ b/app/controllers/traces_controller.rb @@ -59,9 +59,9 @@ class TracesController < ApplicationController @params = params.permit(:display_name, :tag, :before, :after) @traces = if params[:before] - traces.where("id < ?", params[:before]).order(:id => :desc) + traces.where("gpx_files.id < ?", params[:before]).order(:id => :desc) elsif params[:after] - traces.where("id > ?", params[:after]).order(:id => :asc) + traces.where("gpx_files.id > ?", params[:after]).order(:id => :asc) else traces.order(:id => :desc) end