We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1465b28 commit dcd4f7dCopy full SHA for dcd4f7d
Source/Menu/Notifications/NotificationManager.cs
@@ -248,9 +248,8 @@ private Check CheckExcludes(Check check)
248
return check;
249
break;
250
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;
+ if (SystemInfo.Application.Version.IndexOf(c.Value, StringComparison.OrdinalIgnoreCase) > -1)
+ return check;
254
255
case "system":
256
var os = SystemInfo.OperatingSystem;
0 commit comments