mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Fixed another CPIM issue
This commit is contained in:
parent
f6f3557d88
commit
797d7e3f64
1 changed files with 5 additions and 3 deletions
|
|
@ -149,9 +149,11 @@ string Cpim::Message::asString () const {
|
|||
|
||||
string output;
|
||||
// TODO: Remove cpimHeaders
|
||||
for (const auto &cpimHeader : *d->cpimHeaders)
|
||||
output += cpimHeader->asString();
|
||||
output += "\r\n";
|
||||
if (d->cpimHeaders->size() > 0) {
|
||||
for (const auto &cpimHeader : *d->cpimHeaders)
|
||||
output += cpimHeader->asString();
|
||||
output += "\r\n";
|
||||
}
|
||||
// TODO Remove cpimHeaders
|
||||
|
||||
if (d->messageHeaders->size() > 0) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue