diff --git a/lib/icinga/checkable.cpp b/lib/icinga/checkable.cpp index ad9b9a239..6ec7f6f92 100644 --- a/lib/icinga/checkable.cpp +++ b/lib/icinga/checkable.cpp @@ -256,8 +256,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();