diff --git a/src/conference.cpp b/src/conference.cpp index fc0f78c62b0c64baeabd06c4c402a4e1c16ca162..c8a22d874d9d7e23934317219008235a0f01239e 100644 --- a/src/conference.cpp +++ b/src/conference.cpp @@ -84,6 +84,7 @@ Conference::add(const std::string &participant_id) void Conference::setActiveParticipant(const std::string &participant_id) { + if (!videoMixer_) return; for (const auto &item : participants_) { if (participant_id == item) { if (auto call = Manager::instance().callFactory.getCall<SIPCall>(participant_id)) {