diff --git a/src/chat/notification/imdn.cpp b/src/chat/notification/imdn.cpp index b538cf015..24d1300e1 100644 --- a/src/chat/notification/imdn.cpp +++ b/src/chat/notification/imdn.cpp @@ -206,6 +206,12 @@ void Imdn::send () { } void Imdn::startTimer () { + if (!chatRoom->canHandleCpim()) { + // Compatibility mode for basic chat rooms, do not aggregate notifications + send(); + return; + } + unsigned int duration = 500; if (!timer) timer = chatRoom->getCore()->getCCore()->sal->create_timer(timerExpired, this, duration, "imdn timeout");