From: Tom Hughes Date: Sat, 28 Apr 2018 16:12:27 +0000 (+0100) Subject: Fix syntax error with ruby 2.5 X-Git-Tag: live~3087 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/d7b43c5f1723e70eb8e6ae6fc276af24f6758283?ds=inline Fix syntax error with ruby 2.5 --- diff --git a/app/controllers/browse_controller.rb b/app/controllers/browse_controller.rb index 41fa14aae..b4cb4594f 100644 --- a/app/controllers/browse_controller.rb +++ b/app/controllers/browse_controller.rb @@ -3,7 +3,7 @@ class BrowseController < ApplicationController before_action :authorize_web before_action :set_locale - before_action :except => [:query] { |c| c.check_database_readable(true) } + before_action(:except => [:query]) { |c| c.check_database_readable(true) } before_action :require_oauth around_action :web_timeout