diff options
author | sr55 <[email protected]> | 2014-08-19 16:54:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-08-19 16:54:24 +0000 |
commit | d9cb9cea31d6c3a4e3220202cd77471a8b37b02b (patch) | |
tree | c9bfd3ce8ad9a80125bb15d4cf5412e6f04a4b23 /win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | |
parent | a37c2119baece04d28cd75816cd31270e317197a (diff) |
WinGui: -Fix to the update service. -Change NlMeans to NLMeans
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6320 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs index af4243b93..504f692bc 100644 --- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -1697,6 +1697,8 @@ namespace HandBrakeWPF.ViewModels {
if (info.TotalBytes == 0 || info.BytesRead == 0)
{
+ this.UpdateAvailable = false;
+ this.UpdateMessage = info.WasSuccessful ? "Update Downloaded" : "Update Service Unavailable. You can try downloading the update from https://handbrake.fr";
return;
}
@@ -1717,7 +1719,7 @@ namespace HandBrakeWPF.ViewModels private void DownloadComplete(DownloadStatus info)
{
this.UpdateAvailable = false;
- this.UpdateMessage = info.WasSuccessful ? "Update Downloaded" : "Update Failed. You can try downloading the update from http://handbrake.fr";
+ this.UpdateMessage = info.WasSuccessful ? "Update Downloaded" : "Update Failed. You can try downloading the update from https://handbrake.fr";
Process.Start(Path.Combine(Path.GetTempPath(), "handbrake-setup.exe"));
Execute.OnUIThread(() => Application.Current.Shutdown());
|