Additional fix for requests

This commit is contained in:
VirtuBox
2019-10-28 07:11:04 +01:00
parent 26ac09677e
commit e3558537b8

View File

@@ -47,14 +47,14 @@ class WOUpdateController(CementBaseController):
wo_current = WOVar.wo_version wo_current = WOVar.wo_version
try: try:
wo_github_latest = get( wo_github_latest = requests.get(
'https://api.github.com/repos/WordOps/WordOps/releases/latest', 'https://api.github.com/repos/WordOps/WordOps/releases/latest',
timeout=(5, 30)).json() timeout=(5, 30)).json()
except RequestException: except requests.RequestException:
Log.debug( Log.debug(
self, "Request to GitHub API failed. " self, "Request to GitHub API failed. "
"Switching to Gitea instance") "Switching to Gitea instance")
wo_github_latest = get( wo_github_latest = requests.get(
'https://git.virtubox.net/api/v1/repos/virtubox/WordOps/tags', 'https://git.virtubox.net/api/v1/repos/virtubox/WordOps/tags',
timeout=(5, 30)).json() timeout=(5, 30)).json()
wo_latest = wo_github_latest[0]["name"] wo_latest = wo_github_latest[0]["name"]