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 437b34b commit 094d543
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ Changelog
6.3.1 (unreleased)
------------------

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


6.3.0 (2024-12-05)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,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 @@ -286,7 +286,6 @@ def reply(self):
}
)

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 094d543

Please sign in to comment.