Skip to content

Commit

Permalink
Merge pull request #1112 from jonathanspw/mirrors_service
Browse files Browse the repository at this point in the history
minor bug fix for kitten urls
  • Loading branch information
jonathanspw authored Oct 17, 2024
2 parents a21651b + 7f5945f commit 76f7a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/api/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def get_mirrors_list(
)
else:
full_mirror_path = urljoin(
urls.get('http') or urls.get('https') + '/',
urls.get('http', urls.get('https', None)) + '/',
f'{version}/{repo_path}',
)
if arch:
Expand Down

0 comments on commit 76f7a52

Please sign in to comment.