misc(updatechecker): moved parsed_url
Some checks failed
Build Documentation and Lint Code / build and lint (pull_request) Failing after 25s

This commit is contained in:
Seaswimmer 2024-01-07 13:59:20 +00:00
parent be687a58fa
commit 0695dc061e
Signed by: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -114,7 +114,8 @@ class UpdateChecker(commands.Cog):
repo = cog._repo_manager.get_repo(repo_name)
if not repo:
continue
if repo.url.startswith("https://github.com"):
parsed_url = urlparse(repo.url)
if parsed_url.netloc == "github.com":
url = repo.url + r"/commits/" + repo.branch + ".atom"
response = await self.fetch_feed(url)
try:
@ -127,7 +128,6 @@ class UpdateChecker(commands.Cog):
else:
url = repo.url + r"/rss/branch/" + repo.branch
response = await self.fetch_feed(url)
parsed_url = urlparse(repo.url)
try:
commit = response.entries[0]["id"][33:]
hash = "[" + commit + "](" + response.entries[0]["link"] + ")"