From ef68c8cb48e54eea2f8971f190c2b996b7920be5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Andr=C3=A9?= Date: Tue, 3 Mar 2020 15:59:05 +0100 Subject: [PATCH] Fix --- Back/skydiveLogs-api.Business/StatsService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Back/skydiveLogs-api.Business/StatsService.cs b/Back/skydiveLogs-api.Business/StatsService.cs index 3173042..af6e597 100644 --- a/Back/skydiveLogs-api.Business/StatsService.cs +++ b/Back/skydiveLogs-api.Business/StatsService.cs @@ -169,7 +169,7 @@ namespace skydiveLogs_api.Business { LastJump = lastJump, TotalJumps = allJumps.Count(), - TotalCutaway = allJumps.Where(j => j.WithCutaway).Count() + TotalCutaways = allJumps.Where(j => j.WithCutaway).Count() }; }