From 33f0608d84a24532f263127bf5f885d7c350bb23 Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Thu, 20 Nov 2025 17:19:20 -0800 Subject: [PATCH] Remove redundant progress status update in driver package processing Eliminates an unnecessary progress queue update that occurs immediately before downloading package XML, as this status message duplicates information already provided in the subsequent log message. This simplifies the progress reporting flow and reduces redundant communication to the progress queue without impacting user-facing functionality. --- FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.Lenovo.psm1 | 3 --- 1 file changed, 3 deletions(-) diff --git a/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.Lenovo.psm1 b/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.Lenovo.psm1 index 64f4c00..bb08448 100644 --- a/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.Lenovo.psm1 +++ b/FFUDevelopment/FFUUI.Core/FFUUI.Core.Drivers.Lenovo.psm1 @@ -208,9 +208,6 @@ function Save-LenovoDriversTask { $packageXMLPath = Join-Path -Path $tempDownloadPath -ChildPath $packageName $baseURL = $packageUrl -replace [regex]::Escape($packageName), "" # Base URL for the driver file - $status = "($processedPackages/$totalPackages) Getting package info..." - if ($null -ne $ProgressQueue) { Invoke-ProgressUpdate -ProgressQueue $ProgressQueue -Identifier $identifier -Status $status } - # Download the package XML WriteLog "($processedPackages/$totalPackages) Downloading package XML: $packageUrl" try {