diff options
author | sr55 <[email protected]> | 2012-01-29 12:43:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-01-29 12:43:24 +0000 |
commit | df4a57b120d44b029538c903491db6e8797cd98c (patch) | |
tree | 11e876f1276a4c8ec2156aaedd0f488413a82f98 /win/CS/Functions/Main.cs | |
parent | 67e4656971e77322caaba271e53790888636b83c (diff) |
WinGui: Fix an issue that was causing the CLI version to be queried on very launch, instead of only when the CLI executable changes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4425 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/Functions/Main.cs')
-rw-r--r-- | win/CS/Functions/Main.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/Functions/Main.cs b/win/CS/Functions/Main.cs index 28909b403..db154ab2f 100644 --- a/win/CS/Functions/Main.cs +++ b/win/CS/Functions/Main.cs @@ -310,7 +310,7 @@ namespace Handbrake.Functions string base64Hash = Convert.ToBase64String(hash);
// Compare the hash with the last known hash. If it's the same, return.
- if (UserSettingService.GetUserSetting<string>(UserSettingConstants.CliExeHash) == base64Hash)
+ if (UserSettingService.GetUserSetting<string>(ASUserSettingConstants.HandBrakeExeHash) == base64Hash)
{
return;
}
|