Skip to content
Snippets Groups Projects
Commit f31c186d authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed issue where submit test points were not properly added if checker gives points

parent 3716eb05
Branches
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ namespace ClientServer.Helpers
/// </summary>
public static class Constants
{
public static string VersionString = "2.21.0";
public static string VersionString = "2.21.1";
/// <summary>
/// this is only set once at program.cs!!
......
......@@ -1212,6 +1212,7 @@ namespace ClientServer.Schedulers
if (testResult.Points.HasValue)
{
//use the points from the checker
if (submitPoints == null) submitPoints = 0;
submitPoints += testResult.Points.Value;
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment