From 17058aa250391bd0e29d2970d2208cbafb1d698f Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Mon, 26 Mar 2018 10:21:42 +0200 Subject: [PATCH] return when ending processing a notify --- src/conference/handlers/remote-conference-list-event-handler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/conference/handlers/remote-conference-list-event-handler.cpp b/src/conference/handlers/remote-conference-list-event-handler.cpp index 9456be743..52e1df22a 100644 --- a/src/conference/handlers/remote-conference-list-event-handler.cpp +++ b/src/conference/handlers/remote-conference-list-event-handler.cpp @@ -142,6 +142,7 @@ void RemoteConferenceListEventHandler::notifyReceived (const Content *notifyCont return; handler->notifyReceived(xmlBody); + return; } list contents = ContentManager::multipartToContentList(*notifyContent);