forked from cswimr/SeaCogs
misc(updatechecker): moved parsed_url
This commit is contained in:
parent
be687a58fa
commit
0695dc061e
1 changed files with 2 additions and 2 deletions
|
@ -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"] + ")"
|
||||
|
|
Loading…
Reference in a new issue