diff --git a/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1 b/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1 index 767c527..5a518da 100644 --- a/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1 +++ b/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1 @@ -39,7 +39,7 @@ function Get-WingetOutdatedApps { # Now cycle in real package and split accordingly $upgradeList = @() For ($i = $fl + 2; $i -lt $lines.Length; $i++) { - $line = $lines[$i] -replace "…", " " #Fix "..." in long names + $line = $lines[$i] -replace "[\u2026]", " " #Fix "..." in long names if ($line.StartsWith("-----")) { #Get header line $fl = $i - 1