We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fc3334 commit 4085053Copy full SHA for 4085053
src/info/repo.rs
@@ -79,9 +79,9 @@ impl<'a> Repo<'a> {
79
*author_nbr_of_commits += 1;
80
total_nbr_of_commits += 1;
81
82
- time_of_most_recent_commit.get_or_insert_with(|| commit.committer.time);
+ time_of_most_recent_commit.get_or_insert_with(|| commit.time());
83
if commit_iter.peek().is_none() {
84
- time_of_first_commit = commit.committer.time.into();
+ time_of_first_commit = commit.time().into();
85
}
86
87
0 commit comments