We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ff6076 commit 47c143fCopy full SHA for 47c143f
src/server/query_processor.py
@@ -103,6 +103,10 @@ async def process_query(
103
print(f"{Colors.RED}{e}{Colors.END}")
104
105
context["error_message"] = f"Error: {e}"
106
+ if "405" in str(e):
107
+ context["error_message"] = (
108
+ "Repository not found. Please make sure it is public (private repositories will be supported soon)"
109
+ )
110
return template_response(context=context)
111
112
if len(content) > MAX_DISPLAY_SIZE:
0 commit comments