diff options
Diffstat (limited to 'app/controllers/blob_controller.rb')
-rw-r--r-- | app/controllers/blob_controller.rb | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/app/controllers/blob_controller.rb b/app/controllers/blob_controller.rb index d68754d072a..d4a45d9508e 100644 --- a/app/controllers/blob_controller.rb +++ b/app/controllers/blob_controller.rb @@ -11,16 +11,9 @@ class BlobController < ProjectResourceController def show if @tree.is_blob? - if @tree.text? - encoding = detect_encoding(@tree.data) - mime_type = encoding ? "text/plain; charset=#{encoding}" : "text/plain" - else - mime_type = @tree.mime_type - end - send_data( @tree.data, - type: mime_type, + type: @tree.mime_type, disposition: 'inline', filename: @tree.name ) |