Skip to content

Commit

Permalink
fix bug;
Browse files Browse the repository at this point in the history
  • Loading branch information
YaphetKG committed Aug 9, 2024
1 parent f6a3d23 commit da5040b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dug/core/async_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ async def search_program(self, program_name=None, offset=0, size=None):
missing_studies = json.load(file)
for program in missing_studies:
if program_name.lower() == program['program_name'].lower():
updated_studies.append(program['collections'])
updated_studies.extend(program['collections'])


return updated_studies
Expand Down

0 comments on commit da5040b

Please sign in to comment.