Skip to content
Snippets Groups Projects
Commit d44a6567 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

conference: only show text/plain messages

Change-Id: I2c71d9e390423b2e3c34eb03e96cdb455b6e9149
parent 2bffc30f
No related branches found
No related tags found
No related merge requests found
......@@ -402,7 +402,7 @@ CallbacksHandler::slotIncomingMessage(const QString& callId,
pieces2[1].toInt(),
pieces3[1].toInt(),
e.second);
} else { // we consider it as an usual message interaction
} else if (e.first.contains("text/plain")) { // we consider it as an usual message interaction
emit incomingCallMessage(callId, from2, e.second);
}
}
......
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