Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tibitoth authored Dec 9, 2024
1 parent 5c2d617 commit 0e68359
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public async Task<IReadOnlyCollection<FinalStudentGrade>> List(string repoPrefix
var lastResult = student.OrderByDescending(s => s.Date).First();
finalResults.Add(new FinalStudentGrade(
neptun: student.Key.Neptun,
repo: lastResult.Key.GitHubRepoName,
repo: student.Key.GitHubRepoName,
prUrl: lastResult.GitHubPrUrl,
points: lastResult.Points == null ? new Dictionary<string, double>() : lastResult.Points.ToDictionary(keySelector: p => p.Name, elementSelector: p => p.Point)));
}
Expand Down

0 comments on commit 0e68359

Please sign in to comment.