Commit 593e262e authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix 500 on repo archive download

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 85a15b0e
...@@ -22,7 +22,7 @@ class Projects::RepositoriesController < Projects::ApplicationController ...@@ -22,7 +22,7 @@ class Projects::RepositoriesController < Projects::ApplicationController
if file_path if file_path
# Send file to user # Send file to user
response.headers["Content-Length"] = File.Open(file_path).size.to_s response.headers["Content-Length"] = File.open(file_path).size.to_s
send_file file_path send_file file_path
else else
render_404 render_404
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment