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:
parent
58381bbfd4
commit
c78853a97e
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue