diff --git a/lib/icinga/checkable.cpp b/lib/icinga/checkable.cpp index 8f21e71f140..e8423d7dffc 100644 --- a/lib/icinga/checkable.cpp +++ b/lib/icinga/checkable.cpp @@ -232,8 +232,8 @@ void Checkable::NotifyDowntimeInternal(const Downtime::Ptr& downtime) void Checkable::NotifyDowntimeEnd(const Downtime::Ptr& downtime) { - /* don't send notifications for flexible downtimes which never triggered */ - if (!downtime->GetFixed() && !downtime->IsTriggered()) + /* don't send notifications for downtimes which never triggered */ + if (!downtime->IsTriggered()) return; Checkable::Ptr checkable = downtime->GetCheckable();