From 17ee1f15902825fd5e8b31693c54dd6f7c0b98ff Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Mon, 22 Feb 2016 16:25:23 +0100 Subject: [PATCH] chat.c: dont change message state to in progress if we failed to send it --- coreapi/chat.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/coreapi/chat.c b/coreapi/chat.c index 3cabe976c..6620b6bf1 100644 --- a/coreapi/chat.c +++ b/coreapi/chat.c @@ -418,7 +418,10 @@ void _linphone_chat_room_send_message(LinphoneChatRoom *cr, LinphoneChatMessage linphone_chat_room_delete_composing_refresh_timer(cr); } - linphone_chat_message_set_state(msg, LinphoneChatMessageStateInProgress); + // if operation failed, we should not change message state + if (msg->state == LinphoneChatMessageOutgoing) { + linphone_chat_message_set_state(msg, LinphoneChatMessageStateInProgress); + } } void linphone_chat_message_update_state(LinphoneChatMessage *msg, LinphoneChatMessageState new_state) {