From d0d855c8ad8dec6220b67e698494367b80f8cef7 Mon Sep 17 00:00:00 2001 From: Elizabeth Ashurov Date: Tue, 5 May 2026 13:48:48 +0300 Subject: [PATCH] toolsHCK: remove UnloadPlaylist call Remove the UnloadPlaylist call as only one playlist is loaded per run, making it unnecessary. Signed-off-by: Elizabeth Ashurov --- tools/toolsHCK.ps1 | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tools/toolsHCK.ps1 b/tools/toolsHCK.ps1 index 3131ed4..bdf8e09 100644 --- a/tools/toolsHCK.ps1 +++ b/tools/toolsHCK.ps1 @@ -2279,16 +2279,6 @@ function createprojectpackage { $PackageWriter.Save($PackagePath) $PackageWriter.Dispose() - if ($PlaylistManager) { - if (-Not $json) { - Write-Output "Unloading playlist" - } else { - $actionMessages += "Unloading playlist" - } - - $PlaylistManager.UnloadPlaylist() - } - if (-Not $json) { Write-Output "Packaged to $($PackagePath)..." } else {