diff --git a/Emby.Server.Core/ApplicationHost.cs b/Emby.Server.Core/ApplicationHost.cs index a8866fc97..cfed8eb0b 100644 --- a/Emby.Server.Core/ApplicationHost.cs +++ b/Emby.Server.Core/ApplicationHost.cs @@ -811,9 +811,11 @@ namespace Emby.Server.Core info.ArchiveType = "7z"; info.DownloadUrls = GetWindowsDownloadUrls(); } - - // No version available - user requirement - info.DownloadUrls = new string[] { }; + else + { + // No version available - user requirement + info.DownloadUrls = new string[] { }; + } return info; }