diff --git a/gfibot/backend/routes/repos.py b/gfibot/backend/routes/repos.py index 8bf7d62..a4cd8c5 100644 --- a/gfibot/backend/routes/repos.py +++ b/gfibot/backend/routes/repos.py @@ -169,8 +169,8 @@ def search_repo_detail( .order_by("$text_score") .limit(10) ) - if repos_q.count() == 0: - raise HTTPException(status_code=404, detail="Repository not found") + # if repos_q.count() == 0: + # raise HTTPException(status_code=404, detail="Repository not found") repos_search = [RepoDetail(**repo.to_mongo()) for repo in repos_q] if user: # append to user search history