]> source.dussan.org Git - redmine.git/commitdiff
Fixed: error when downloading a file with no matching mime type (#3782).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 5 Jan 2010 18:16:03 +0000 (18:16 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Tue, 5 Jan 2010 18:16:03 +0000 (18:16 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3281 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/attachments_controller.rb

index 92fa01e8f6d74fd68de94d7667e01ee57d441c91..5b2acc8ab7685e74848266fcb4f1506c1f556137 100644 (file)
@@ -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