Change check_for_update to not exit process on server connection error (#629)

Co-authored-by: hingen <1627313-hingen@users.noreply.gitlab.com>
This commit is contained in:
hingen 2024-01-21 12:08:31 +00:00 committed by GitHub
parent fe29620646
commit d2cb5a3761
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ def check_for_update():
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout,
requests.exceptions.RequestException, requests.exceptions.HTTPError) as err:
print ("Error Connecting to server!")
exit(1)
return False
latest_version = latest_release["tag_name"]