From d9cb9cea31d6c3a4e3220202cd77471a8b37b02b Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 19 Aug 2014 16:54:24 +0000 Subject: 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 --- win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs') 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()); -- cgit v1.2.3