X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/160429e62d88810ec49ccc9c504edee675dca080..b9c9d6c1aafdd60c72b54345b4d2dc94317298a0:/app/controllers/changeset_controller.rb diff --git a/app/controllers/changeset_controller.rb b/app/controllers/changeset_controller.rb index d0a357c85..1b77d48ee 100644 --- a/app/controllers/changeset_controller.rb +++ b/app/controllers/changeset_controller.rb @@ -12,7 +12,8 @@ class ChangesetController < ApplicationController before_filter :check_api_writable, :only => [:create, :update, :delete, :upload, :include] before_filter :check_api_readable, :except => [:create, :update, :delete, :upload, :download, :query] after_filter :compress_output - around_filter :api_call_handle_error + around_filter :api_call_handle_error, :except => [:list, :list_user, :list_bbox] + around_filter :web_timeout, :only => [:list, :list_user, :list_bbox] filter_parameter_logging " ? and min_lat < ? and max_lat > ?', - bbox[2] * GeoRecord::SCALE, bbox[0] * GeoRecord::SCALE, bbox[3]* GeoRecord::SCALE, bbox[1] * GeoRecord::SCALE] + (bbox[2] * GeoRecord::SCALE).to_i, + (bbox[0] * GeoRecord::SCALE).to_i, + (bbox[3] * GeoRecord::SCALE).to_i, + (bbox[1] * GeoRecord::SCALE).to_i] else return nil end