Skip to content

Commit

Permalink
Fix equality check for null corpus
Browse files Browse the repository at this point in the history
  • Loading branch information
katybaulch committed Nov 14, 2024
1 parent ce4aa05 commit 5d68604
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 5d68604

Please sign in to comment.