diff options
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/public/projects_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/public/projects_controller.rb b/app/controllers/public/projects_controller.rb index ed90d0348ea..85216cd3271 100644 --- a/app/controllers/public/projects_controller.rb +++ b/app/controllers/public/projects_controller.rb @@ -19,6 +19,6 @@ class Public::ProjectsController < ApplicationController @recent_tags = @repository.tags.first(10) @commit = @repository.commit(params[:ref]) - @tree = Tree.new(@repository, @commit.id, @ref, @path) + @tree = Tree.new(@repository, @commit.id) end end |