We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f4cba commit 0d2090bCopy full SHA for 0d2090b
1 file changed
Services/UpdateService.cs
@@ -25,7 +25,8 @@ public async Task InitializeAsync()
25
{
26
if (_updateManager == null) await InitializeAsync();
27
28
- return await _updateManager!.CheckForUpdatesAsync();
+ _updateInfo = await _updateManager!.CheckForUpdatesAsync();
29
+ return _updateInfo;
30
}
31
32
public async Task DownloadUpdatesAsync(Action<int> progress, CancellationToken cancellationToken = default)
0 commit comments