From eb3b7d055a86cbbfece22b3f47d8bd13a928dbb8 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Tue, 5 Jan 2010 18:16:03 +0000 Subject: [PATCH] Fixed: error when downloading a file with no matching mime type (#3782). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3281 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/controllers/attachments_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/attachments_controller.rb b/app/controllers/attachments_controller.rb index 92fa01e8..5b2acc8a 100644 --- a/app/controllers/attachments_controller.rb +++ b/app/controllers/attachments_controller.rb @@ -82,6 +82,6 @@ private if content_type.blank? content_type = Redmine::MimeType.of(attachment.filename) end - content_type + content_type.to_s end end -- 2.11.0