Commit e5bbefc9 authored by Demelziraptor's avatar Demelziraptor

change find_or_first to work with default branch

parent 1b85cbc6
...@@ -23,11 +23,11 @@ class Commit ...@@ -23,11 +23,11 @@ class Commit
class << self class << self
def find_or_first(repo, commit_id = nil) def find_or_first(repo, commit_id = nil, root_ref)
commit = if commit_id commit = if commit_id
repo.commit(commit_id) repo.commit(commit_id)
else else
repo.commits.first repo.commits(root_ref).first
end end
Commit.new(commit) if commit Commit.new(commit) if commit
end end
......
...@@ -8,7 +8,7 @@ module Project::RepositoryTrait ...@@ -8,7 +8,7 @@ module Project::RepositoryTrait
end end
def commit(commit_id = nil) def commit(commit_id = nil)
Commit.find_or_first(repo, commit_id) Commit.find_or_first(repo, commit_id, root_ref)
end end
def fresh_commits(n = 10) def fresh_commits(n = 10)
......
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