diff --git a/src/QSP/Updates/Utilities.cs b/src/QSP/Updates/Utilities.cs index 9e783846..b2df2424 100644 --- a/src/QSP/Updates/Utilities.cs +++ b/src/QSP/Updates/Utilities.cs @@ -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)