Skip to content

Commit 0e68359

Browse files
authored
build fix
1 parent 5c2d617 commit 0e68359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grade-management/Ahk.GradeManagement/Functions/ListGrades/GradeListing.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public async Task<IReadOnlyCollection<FinalStudentGrade>> List(string repoPrefix
2121
var lastResult = student.OrderByDescending(s => s.Date).First();
2222
finalResults.Add(new FinalStudentGrade(
2323
neptun: student.Key.Neptun,
24-
repo: lastResult.Key.GitHubRepoName,
24+
repo: student.Key.GitHubRepoName,
2525
prUrl: lastResult.GitHubPrUrl,
2626
points: lastResult.Points == null ? new Dictionary<string, double>() : lastResult.Points.ToDictionary(keySelector: p => p.Name, elementSelector: p => p.Point)));
2727
}

0 commit comments

Comments
 (0)