Skip to content
Snippets Groups Projects
Commit 2f3c1f07 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#3619] Only send the first part of instant messages (truncated)

parent ce59602a
No related branches found
No related tags found
No related merge requests found
......@@ -140,9 +140,9 @@ pj_status_t InstantMessaging::send_message (pjsip_inv_session *session, CallID&
int size = multiple_messages.size();
int i = 0;
for (i=0; i<size; i++) {
send (session, id, multiple_messages[i]);
}
// Maximum is above 1500 character
// TODO: Send every messages
send (session, id, multiple_messages[i]);
}
return PJ_SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment