summaryrefslogtreecommitdiffstats
path: root/app/controllers/application_controller.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2019-11-30 05:40:40 +0000
committerGo MAEDA <maeda@farend.jp>2019-11-30 05:40:40 +0000
commitf7fcd111e9b0e127950634435bf4e63d0f69d4bf (patch)
tree656ac0d6abb225748e606f14938a54a3e47f0bd9 /app/controllers/application_controller.rb
parentca751980e556576cc0a2af1cc066d2a353ffcd65 (diff)
downloadredmine-f7fcd111e9b0e127950634435bf4e63d0f69d4bf.tar.gz
redmine-f7fcd111e9b0e127950634435bf4e63d0f69d4bf.zip
Ruby 2.7: Regexp#match and Regexp#match? with a nil argument are deprecated (#32527, #31500).
git-svn-id: http://svn.redmine.org/redmine/trunk@19324 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r--app/controllers/application_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index ea579bfa8..88ba2674e 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -644,7 +644,7 @@ class ApplicationController < ActionController::Base
# Returns a string that can be used as filename value in Content-Disposition header
def filename_for_content_disposition(name)
- %r{(MSIE|Trident|Edge)}.match?(request.env['HTTP_USER_AGENT']) ? ERB::Util.url_encode(name) : name
+ %r{(MSIE|Trident|Edge)}.match?(request.env['HTTP_USER_AGENT'].to_s) ? ERB::Util.url_encode(name) : name
end
def api_request?