From e877ef92d746d3f2fc9cfa16c3c41c4b570c0c3d Mon Sep 17 00:00:00 2001 From: Anthony Lavado Date: Sun, 3 Nov 2019 02:51:29 -0500 Subject: [PATCH] Always download the latest tray app release --- deployment/windows/build-jellyfin.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/windows/build-jellyfin.ps1 b/deployment/windows/build-jellyfin.ps1 index a360c6a304..58968c5630 100644 --- a/deployment/windows/build-jellyfin.ps1 +++ b/deployment/windows/build-jellyfin.ps1 @@ -145,7 +145,7 @@ function Install-TrayApp { }else{ Write-Verbose "Downloading Tray App and copying to Jellyfin location" [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 - Invoke-WebRequest -Uri https://github.com/jellyfin/jellyfin-windows-tray/releases/download/v1.0/JellyfinTray.exe -UseBasicParsing -OutFile "$installLocation/JellyfinTray.exe" | Write-Verbose + Invoke-WebRequest -Uri https://github.com/jellyfin/jellyfin-windows-tray/releases/latest/download/JellyfinTray.exe -UseBasicParsing -OutFile "$installLocation/JellyfinTray.exe" | Write-Verbose } }