Skip to content

Commit

Permalink
Fix search corpora respecting (#420)
Browse files Browse the repository at this point in the history
* Bump to 1.19.13

* Fix equality check for null corpus
  • Loading branch information
katybaulch authored Nov 14, 2024
1 parent 5b1a84b commit 766e7cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/api/api_v1/routers/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def search_documents(
token.decode_and_validate(db, request, app_token)

# If the search request IDs are null, we want to search using the app token corpora.
if search_body.corpus_import_ids is None:
if search_body.corpus_import_ids == [] or search_body.corpus_import_ids is None:
search_body.corpus_import_ids = cast(Sequence, token.allowed_corpora_ids)

# For the second validation, search request corpora Ids are validated against the
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "navigator_backend"
version = "1.19.12"
version = "1.19.13"
description = ""
authors = ["CPR-dev-team <[email protected]>"]
packages = [{ include = "app" }, { include = "tests" }]
Expand Down

0 comments on commit 766e7cf

Please sign in to comment.