diff options
author | sr55 <[email protected]> | 2014-09-05 22:14:26 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-09-05 22:14:26 +0000 |
commit | 4eccd975caa1d2ece174c70546da069df3e2ad08 (patch) | |
tree | fdaac69cccd01c3a67a04d52f34a7cbd4aea68a9 /win/CS/HandBrakeWPF | |
parent | 2df5f2410fb8ecd96b0ae048f3b539e885a34a83 (diff) |
WinGui: Change the update checker to use the 64bit appcast when the operating system is 64bit even when the app is the 32bit version.
Added Operating bit-ness to the log header.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6392 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/UpdateService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Services/UpdateService.cs b/win/CS/HandBrakeWPF/Services/UpdateService.cs index db94b56b0..85b1f4ab0 100644 --- a/win/CS/HandBrakeWPF/Services/UpdateService.cs +++ b/win/CS/HandBrakeWPF/Services/UpdateService.cs @@ -85,14 +85,14 @@ namespace HandBrakeWPF.Services try
{
string url =
- VersionHelper.Is64Bit()
+ VersionHelper.Is64Bit() || Environment.Is64BitOperatingSystem
? Constants.Appcast64
: Constants.Appcast32;
if (VersionHelper.IsNightly())
{
url =
- VersionHelper.Is64Bit()
+ VersionHelper.Is64Bit() || Environment.Is64BitOperatingSystem
? Constants.AppcastUnstable64
: Constants.AppcastUnstable32;
}
|