mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-06 21:33:08 +00:00
Add missing is_composing_received callback when a text message is received.
This commit is contained in:
parent
58d9e149cd
commit
a3f0967236
1 changed files with 4 additions and 1 deletions
|
|
@ -198,7 +198,10 @@ void linphone_chat_room_message_received(LinphoneChatRoom *cr, LinphoneCore *lc,
|
|||
//legacy API
|
||||
if (lc->vtable.text_received!=NULL) lc->vtable.text_received(lc, cr, msg->from, msg->message);
|
||||
if (lc->vtable.message_received!=NULL) lc->vtable.message_received(lc, cr,msg);
|
||||
|
||||
if (cr->lc->vtable.is_composing_received != NULL) {
|
||||
cr->remote_is_composing = LinphoneIsComposingIdle;
|
||||
cr->lc->vtable.is_composing_received(cr->lc, cr);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue