This commit is contained in:
Sébastien André
2020-03-03 15:59:05 +01:00
parent 63f801d37b
commit ef68c8cb48

View File

@@ -169,7 +169,7 @@ namespace skydiveLogs_api.Business
{ {
LastJump = lastJump, LastJump = lastJump,
TotalJumps = allJumps.Count(), TotalJumps = allJumps.Count(),
TotalCutaway = allJumps.Where(j => j.WithCutaway).Count() TotalCutaways = allJumps.Where(j => j.WithCutaway).Count()
}; };
} }