Commit 40a6a077 authored by Sean McGivern's avatar Sean McGivern

Merge branch '25761-fix-blame-500' into 'master'

Fix 500 error for invalid path when visiting blame page

Closes #25761

See merge request !8145
parents 051c4944 26c8e0b3
......@@ -8,6 +8,9 @@ class Projects::BlameController < Projects::ApplicationController
def show
@blob = @repository.blob_at(@commit.id, @path)
return render_404 unless @blob
@blame_groups = Gitlab::Blame.new(@blob, @commit).groups
end
end
---
title: Fix blame 500 error on invalid path.
merge_request: 25761
author: Jeff Stubler
......@@ -25,5 +25,10 @@ describe Projects::BlameController do
let(:id) { 'master/files/ruby/popen.rb' }
it { is_expected.to respond_with(:success) }
end
context "invalid file" do
let(:id) { 'master/files/ruby/missing_file.rb'}
it { expect(response).to have_http_status(404) }
end
end
end
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