Luke Pulverenti пре 8 година
родитељ
комит
0d39e041db
1 измењених фајлова са 5 додато и 3 уклоњено
  1. 5 3
      Emby.Server.Core/ApplicationHost.cs

+ 5 - 3
Emby.Server.Core/ApplicationHost.cs

@@ -811,9 +811,11 @@ namespace Emby.Server.Core
                 info.ArchiveType = "7z";
                 info.ArchiveType = "7z";
                 info.DownloadUrls = GetWindowsDownloadUrls();
                 info.DownloadUrls = GetWindowsDownloadUrls();
             }
             }
-
-            // No version available - user requirement
-            info.DownloadUrls = new string[] { };
+            else
+            {
+                // No version available - user requirement
+                info.DownloadUrls = new string[] { };
+            }
 
 
             return info;
             return info;
         }
         }