Skip to content

Commit

Permalink
[webui] don't require source access by default
Browse files Browse the repository at this point in the history
  • Loading branch information
coolo committed Nov 20, 2013
1 parent 5d5768f commit b777d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/app/controllers/webui/package_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ def require_package
@project ||= params[:project]
unless params[:package].blank?
begin
@package = Package.get_by_project_and_name( @project.to_param, params[:package] )
@package = Package.get_by_project_and_name( @project.to_param, params[:package], use_source: false )
rescue APIException # why it's not found is of no concern :)
end
end
Expand Down

0 comments on commit b777d2b

Please sign in to comment.