Merge branch 'main' into sonoma-development

This commit is contained in:
Mykola Grymalyuk
2023-07-26 10:58:30 -06:00
committed by GitHub
20 changed files with 288 additions and 147 deletions
+2 -4
View File
@@ -48,10 +48,8 @@ class UpdateFrame(wx.Frame):
if url == "" or version_label == "":
dict = updates.CheckBinaryUpdates(self.constants).check_binary_updates()
if dict:
for key in dict:
version_label = dict[key]["Version"]
url = dict[key]["Link"]
break
version_label = dict["Version"]
url = dict["Link"]
else:
wx.MessageBox("Failed to get update info", "Critical Error")
sys.exit(1)