Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
2f3c1f07
Commit
2f3c1f07
authored
Aug 31, 2010
by
Alexandre Savard
Browse files
[#3619] Only send the first part of instant messages (truncated)
parent
ce59602a
Changes
1
Hide whitespace changes
Inline
Side-by-side
sflphone-common/src/sip/im/InstantMessaging.cpp
View file @
2f3c1f07
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment