Skip to content

Commit

Permalink
Fix sorting bugs in @scadenziario-day
Browse files Browse the repository at this point in the history
  • Loading branch information
folix-01 committed Dec 9, 2024
1 parent 15550b9 commit 2aa004d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Changelog
5.1.18 (unreleased)
-------------------

- Nothing changed yet.
- Fix sorting in @scadenziario-day endpoint.
[folix-01]


5.1.17 (2024-11-25)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ def reply(self):
if query is None:
raise Exception("No query supplied")

if sort_order:
sort_order = "descending" if sort_order else "ascending"
if sort_order not in {"descending", "ascending"}:
sort_order = "ascending"

# results = querybuilder(**querybuilder_parameters)
# Seems that origina querybuilder is not able to handle event search on
Expand Down Expand Up @@ -265,7 +265,7 @@ def reply(self):
"category": brain.subject,
}
)
results_to_be_returned[key].sort(key=lambda x: x["title"])

return {
"@id": self.request.get("URL"),
"items": results_to_be_returned,
Expand Down

0 comments on commit 2aa004d

Please sign in to comment.