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 f0a6167 commit 8cf86adCopy full SHA for 8cf86ad
src/Files.App/Services/App/AppUpdateStoreService.cs
@@ -132,10 +132,10 @@ private async Task GetUpdatePackagesAsync()
132
var updateList = await _storeContext.GetAppAndOptionalStorePackageUpdatesAsync();
133
_updatePackages = updateList?.ToList();
134
}
135
- catch (FileNotFoundException)
+ catch (Exception ex)
136
{
137
- // Suppress the FileNotFoundException.
138
// GetAppAndOptionalStorePackageUpdatesAsync throws for unknown reasons.
+ App.Logger.LogWarning(ex, ex.Message);
139
140
141
0 commit comments