diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-02-20 16:01:05 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-20 16:01:05 -0500 |
| commit | 64b095adec1a18c449861e7b94fe3129a4914529 (patch) | |
| tree | 14d97eda801c71aa86e7f5f8b42d610bc4e89cbc | |
| parent | 962a0f561d3e2accb847444542030e9b4aff0a27 (diff) | |
| parent | 0d39e041dbc6cb5782c626779280936677f15fa9 (diff) | |
Merge pull request #2480 from MediaBrowser/dev
update urls
| -rw-r--r-- | Emby.Server.Core/ApplicationHost.cs | 8 |
1 files changed, 5 insertions, 3 deletions
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; } |
