We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd320b commit a11623dCopy full SHA for a11623d
OpenUtau/ViewModels/UpdaterViewModel.cs
@@ -104,8 +104,13 @@ public UpdaterViewModel() {
104
async void Init() {
105
UpdaterStatus = ThemeManager.GetString("updater.status.checking");
106
sparkle = await NewUpdaterAsync();
107
+ if (sparkle == null) {
108
+ UpdaterStatus = ThemeManager.GetString("updater.status.unknown");
109
+ return;
110
+ }
111
updateInfo = await sparkle.CheckForUpdatesQuietly();
112
if (updateInfo == null) {
113
114
return;
115
}
116
switch (updateInfo.Status) {
0 commit comments