Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for TypeError in wrap function within the load_new_words decorator due to invalid comparison. #516

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions djAerolith/wordwalls/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -516,4 +518,4 @@ def date_from_str(dt):
if ch_date > today:
ch_date = today

return ch_date
return ch_date