mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
tempoarily change linphone_chat_message_is_read
This commit is contained in:
parent
0263048643
commit
7276f565f2
1 changed files with 2 additions and 1 deletions
|
|
@ -1534,7 +1534,8 @@ void linphone_chat_message_remove_custom_header(LinphoneChatMessage *msg, const
|
|||
}
|
||||
|
||||
bool_t linphone_chat_message_is_read(LinphoneChatMessage *msg) {
|
||||
return (msg->state == LinphoneChatMessageStateDisplayed) ? TRUE : FALSE;
|
||||
// TODO : Only state == displayed when reception accused supported
|
||||
return (msg->state == LinphoneChatMessageStateDisplayed || msg->state == LinphoneChatMessageStateDelivered) ? TRUE : FALSE;
|
||||
}
|
||||
|
||||
bool_t linphone_chat_message_is_outgoing(LinphoneChatMessage *msg) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue