Skip to content

Commit

Permalink
Fix a stupid error.
Browse files Browse the repository at this point in the history
  • Loading branch information
JetStream96 committed Jan 18, 2018
1 parent e86126d commit 63d2413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QSP/Updates/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static bool ShouldShowLicense()

// This is required because the installer may write files with
// "\r\n" newlines instead of the original "\n".
return File.ReadAllText(prevTxt).EqualsIgnoreNewlineStyle(
return !File.ReadAllText(prevTxt).EqualsIgnoreNewlineStyle(
File.ReadAllText("LICENSE.txt"));
}
catch (Exception ex)
Expand Down

0 comments on commit 63d2413

Please sign in to comment.