Skip to content

Commit

Permalink
fix updater to readline insteade of all
Browse files Browse the repository at this point in the history
  • Loading branch information
rex706 committed Dec 1, 2016
1 parent ff07d49 commit 46ae4d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ARMA FOV Changer/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ private static async Task<int> CheckForUpdate()
{
System.Version current = Assembly.GetExecutingAssembly().GetName().Version;
StreamReader reader = new StreamReader(stream);
latest = System.Version.Parse(reader.ReadToEnd());
latest = System.Version.Parse(reader.ReadLine());

List<string> newFiles = new List<string>();

Expand Down

0 comments on commit 46ae4d4

Please sign in to comment.