Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
01e4b753
Commit
01e4b753
authored
Feb 14, 2018
by
Sylvain Berfini
🐮
Browse files
Better fix for multipart boundary in content type
parent
0e61ad55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/content/content-manager.cpp
src/content/content-manager.cpp
+3
-1
No files found.
src/content/content-manager.cpp
View file @
01e4b753
...
...
@@ -94,7 +94,9 @@ Content ContentManager::contentListToMultipart (const list<Content> &contents) {
Content
content
;
content
.
setBody
(
desc
);
content
.
setContentType
(
ContentType
::
Multipart
);
ContentType
contentType
=
ContentType
::
Multipart
;
contentType
.
setParameter
(
"boundary="
+
boundary
);
content
.
setContentType
(
contentType
);
belle_sip_free
(
desc
);
belle_sip_object_unref
(
mpbh
);
...
...
Write
Preview
Markdown
is supported
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