Changing the note search limit from 9999 to 10000

The documentation says the limit is 10000 which seems like a
nicer round number anyway.
This commit is contained in:
Toby Murray 2014-01-16 02:28:34 -06:00 committed by Tom Hughes
parent 58381bbfd4
commit c78853a97e
2 changed files with 5 additions and 5 deletions

View file

@ -309,10 +309,10 @@ private
# Get the maximum number of results to return
def result_limit
if params[:limit]
if params[:limit].to_i > 0 and params[:limit].to_i < 10000
if params[:limit].to_i > 0 and params[:limit].to_i <= 10000
params[:limit].to_i
else
raise OSM::APIBadUserInput.new("Note limit must be between 1 and 9999")
raise OSM::APIBadUserInput.new("Note limit must be between 1 and 10000")
end
else
100