From 1d37c059eb7345675b24770f84db368acb5f3abc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Del=20Solar?= Date: Thu, 30 Jan 2025 13:38:23 -0500 Subject: [PATCH] Update djAerolith/wordwalls/api.py via CodeComet --- djAerolith/wordwalls/api.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/djAerolith/wordwalls/api.py b/djAerolith/wordwalls/api.py index 4332842c..d8c7d527 100644 --- a/djAerolith/wordwalls/api.py +++ b/djAerolith/wordwalls/api.py @@ -211,12 +211,14 @@ def wrap(request, *args, **kwargs): ) parsed_req["quiz_time_secs"] = quiz_time_secs - parsed_req["questions_per_round"] = body.get("questionsPerRound", 50) - if ( - parsed_req["questions_per_round"] > 200 - or parsed_req["questions_per_round"] < 10 - ): + # Validate questions_per_round + questions_per_round = body.get("questionsPerRound", 50) + if not isinstance(questions_per_round, int): + return bad_request("Questions per round must be an integer.") + if questions_per_round > 200 or questions_per_round < 10: return bad_request("Questions per round must be between 10 and 200.") + parsed_req["questions_per_round"] = questions_per_round + parsed_req["search_criteria"] = body.get("searchCriteria", []) parsed_req["list_option"] = body.get("listOption") parsed_req["selectedList"] = body.get("selectedList") @@ -516,4 +518,4 @@ def date_from_str(dt): if ch_date > today: ch_date = today - return ch_date + return ch_date \ No newline at end of file