From 5a8f4468217e5585b75c5ed9c067791d1c6fbe1d Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Sat, 11 Jan 2025 16:02:26 +0300 Subject: [PATCH] x86 => x64 --- ms-spotify-check.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ms-spotify-check.ps1 b/ms-spotify-check.ps1 index ea24211..f5f1f55 100644 --- a/ms-spotify-check.ps1 +++ b/ms-spotify-check.ps1 @@ -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) {