Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/34ea03c36a567998ad0964e0824bcf706a578c84 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Catch error when downloading install package

pull/702/head
Eric Reed 12 years ago
parent 989bb48596
commit 34ea03c36a

@ -154,8 +154,17 @@ namespace MediaBrowser.Installer
}
// Download
string archive = null;
lblStatus.Content = string.Format("Downloading {0} (version {1})...", FriendlyName, version.versionStr);
var archive = await DownloadPackage(version);
try
{
archive = await DownloadPackage(version);
}
catch (Exception e)
{
SystemClose("Error Downloading Package - " + e.GetType().FullName + "\n\n" + e.Message);
}
dlAnimation.StopAnimation();
prgProgress.Visibility = btnCancel.Visibility = Visibility.Hidden;

Loading…
Cancel
Save