Skip to content

Commit

Permalink
Merge pull request #356 from EGA-archive/develop
Browse files Browse the repository at this point in the history
fixing dataset bug for collections response
  • Loading branch information
costero-e authored Jul 10, 2024
2 parents 3285a45 + f2e7f75 commit 1ef4350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon/db/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def get_analyses_of_dataset(entry_id: Optional[str], qparams: RequestParams, dat
if limit > 100 or limit == 0:
limit = 100
count, dataset_count, docs = get_docs_by_response_type(include, query, datasets_dict, dataset, limit, skip, mongo_collection, idq)
return schema, count, dataset_count, docs
return schema, count, dataset_count, docs, dataset

def beacon_handovers():
query = {}
Expand Down

0 comments on commit 1ef4350

Please sign in to comment.