Fix an issue with incorrect logging of secure boot state

This commit is contained in:
Gustave Monce
2021-08-13 13:21:15 +02:00
parent 8293c18406
commit 668a9b7fe2
10 changed files with 12 additions and 26 deletions
+1 -2
View File
@@ -275,8 +275,7 @@ namespace WPinternals
private void DownloadSelected()
{
IEnumerable<SearchResult> Selection = SearchResultList.Where(r => r.IsSelected);
foreach (SearchResult Result in Selection)
foreach (SearchResult Result in SearchResultList.Where(r => r.IsSelected))
{
App.DownloadManager.Download(Result.URLs, Result.Category, Result.Callback, Result.State);
}