From 36a2309bcaa2d7ea6ba015b6c6a39884ca2a947f Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Tue, 21 Sep 2021 08:04:22 -0400 Subject: [PATCH] Prevent broken release (missing asset) from corrupting existing installation. --- bazarr/check_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/check_update.py b/bazarr/check_update.py index 8cfc841ee..96c88e92d 100644 --- a/bazarr/check_update.py +++ b/bazarr/check_update.py @@ -36,7 +36,7 @@ def check_releases(): if asset['name'] == 'bazarr.zip': download_link = asset['browser_download_url'] if not download_link: - download_link = release['zipball_url'] + continue releases.append({'name': release['name'], 'body': release['body'], 'date': release['published_at'],