Don't set Notification#no_more_notifications on custom notifications

This commit is contained in:
Alexander A. Klimov 2024-03-14 16:29:49 +01:00
parent 7a20d987f6
commit 35a705752f
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ void Notification::BeginExecuteNotification(NotificationType type, const CheckRe
if (type == NotificationProblem && GetInterval() <= 0)
SetNoMoreNotifications(true);
else
else if (type != NotificationCustom)
SetNoMoreNotifications(false);
if (type == NotificationProblem && GetInterval() > 0)