x86 => x64

This commit is contained in:
amd64fox 2025-01-11 16:02:26 +03:00 committed by GitHub
parent ce1b0d89e8
commit 5a8f446821
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -94,7 +94,7 @@ function Get-LatestSpotifyVersion {
Url = $url
}
}
$filteredResults = $results | Where-Object { $_.FileName -match 'SpotifyAB\.SpotifyMusic_.+x86.+\.appx' }
$filteredResults = $results | Where-Object { $_.FileName -match 'SpotifyAB\.SpotifyMusic_.+x64.+\.appx' }
$latestFile = $filteredResults | Sort-Object -Property DateTime -Descending | Select-Object -First 1
if (-not $latestFile) {