Skip to content

Commit dcd4f7d

Browse files
committed
Change New Version to report "none" when up to date
1 parent 1465b28 commit dcd4f7d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Source/Menu/Notifications/NotificationManager.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,8 @@ private Check CheckExcludes(Check check)
248248
return check;
249249
break;
250250
case "installed_version":
251-
//if (SystemInfo.Application.Version.IndexOf(c.Value, StringComparison.OrdinalIgnoreCase) > -1)
252-
if ("U2024.03.20-0022".IndexOf(c.Value, StringComparison.OrdinalIgnoreCase) > -1)
253-
return check;
251+
if (SystemInfo.Application.Version.IndexOf(c.Value, StringComparison.OrdinalIgnoreCase) > -1)
252+
return check;
254253
break;
255254
case "system":
256255
var os = SystemInfo.OperatingSystem;

0 commit comments

Comments
 (0)