Skip to content
2 changes: 1 addition & 1 deletion src/gitingest/parse_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def _parse_url(url: str) -> dict[str, Any]:
url = url.split(" ")[0]
url = unquote(url) # Decode URL-encoded characters

if not url.startswith("https://"):
if not url.startswith("https://") and not url.startswith("http://"):
url = "https://" + url

# Extract domain and path
Expand Down
Loading