mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-16 12:20:12 +10:00
Fix an issue with incorrect logging of secure boot state
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -249,9 +249,7 @@ namespace WPinternals
|
||||
throw new WPinternalsException("Failed to switch to Mass Storage Mode");
|
||||
}
|
||||
|
||||
string Drive = Storage.Drive;
|
||||
|
||||
return Drive;
|
||||
return Storage.Drive;
|
||||
}
|
||||
|
||||
internal static async Task LumiaV2ClearNV(System.Threading.SynchronizationContext UIContext, string FFUPath, bool DoResetFirst = true)
|
||||
|
||||
Reference in New Issue
Block a user