summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions/Main.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/Functions/Main.cs')
-rw-r--r--win/C#/Functions/Main.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/win/C#/Functions/Main.cs b/win/C#/Functions/Main.cs
index f21876764..e9c4442b0 100644
--- a/win/C#/Functions/Main.cs
+++ b/win/C#/Functions/Main.cs
@@ -373,7 +373,6 @@ namespace Handbrake.Functions
}
}
-
/// <summary>
/// Begins checking for an update to HandBrake.
/// </summary>
@@ -394,10 +393,10 @@ namespace Handbrake.Functions
AppcastReader reader = new AppcastReader();
// Get the data, convert it to a string, and parse it into the AppcastReader
- reader.getInfo(new StreamReader(response.GetResponseStream()).ReadToEnd());
+ reader.GetInfo(new StreamReader(response.GetResponseStream()).ReadToEnd());
// Further parse the information
- string build = reader.build;
+ string build = reader.Build;
int latest = int.Parse(build);
int current = Properties.Settings.Default.hb_build;