Don't email me when new versions come out

This commit is contained in:
de4dot 2014-05-09 16:00:17 +02:00
parent 954f0af743
commit b60accb953

View File

@ -122,7 +122,6 @@ namespace de4dot.code.deobfuscators.ILProtector {
bool emailMe = false;
foreach (var info in mainType.RuntimeFileInfos) {
var version = info.GetVersion();
emailMe |= version == null && System.IO.File.Exists(info.PathName);
emailMe |= version != null && version == new Version(1, 0, 7, 0);
Logger.v("Version: {0} ({1})", version == null ? "UNKNOWN" : version.ToString(), info.PathName);
}