mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 13:08:08 +00:00
do not notify empty subject
This commit is contained in:
parent
e1d909d1c5
commit
d7bc4b66ac
1 changed files with 2 additions and 1 deletions
|
|
@ -55,7 +55,8 @@ void RemoteConferenceEventHandlerPrivate::simpleNotifyReceived (const string &xm
|
|||
if (entityAddress == chatRoomId.getPeerAddress()) {
|
||||
if (
|
||||
confInfo->getConferenceDescription().present() &&
|
||||
confInfo->getConferenceDescription().get().getSubject().present()
|
||||
confInfo->getConferenceDescription().get().getSubject().present() &&
|
||||
!confInfo->getConferenceDescription().get().getSubject().get().empty()
|
||||
)
|
||||
confListener->onSubjectChanged(
|
||||
make_shared<ConferenceSubjectEvent>(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue