Skip to content
Snippets Groups Projects
Commit dfe19b2b authored by Jason Hollingsworth's avatar Jason Hollingsworth
Browse files

Fixes 500 error when user types in wrong group name.

parent 4c47a89f
No related branches found
No related tags found
Loading
Loading
Loading
@@ -6,6 +6,7 @@ v 6.3.0
- Show branches list (which branches contains commit) on commit page (Andrew Kumanyaev)
- Security improvements
- Added support for GitLab CI 4.0
- Fixed issue with 500 error when group did not exist
 
v 6.2.0
- Public project pages are now visible to everyone (files, issues, wik, etc.)
Loading
Loading
Loading
Loading
@@ -102,7 +102,7 @@ class GroupsController < ApplicationController
 
# Dont allow unauthorized access to group
def authorize_read_group!
unless projects.present? or can?(current_user, :read_group, @group)
unless @group and (projects.present? or can?(current_user, :read_group, @group))
return render_404
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment