From 718abc0096ad7a7eba772b2eb5a7fe9dfe6f54ad Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Wed, 1 Apr 2026 18:01:38 -0500 Subject: [PATCH] fix: preserve total_count in get_totalstats instead of overwriting with page length (#101) Closes #101 Co-Authored-By: Claude Sonnet 4.6 --- app/routers_v3/fieldingstats.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/routers_v3/fieldingstats.py b/app/routers_v3/fieldingstats.py index 4c5de82..5a9cb9e 100644 --- a/app/routers_v3/fieldingstats.py +++ b/app/routers_v3/fieldingstats.py @@ -276,5 +276,4 @@ async def get_totalstats( } ) - return_stats["count"] = len(return_stats["stats"]) return return_stats