[ekiga] Ekiga: Fix bug with non text/plain IM/Messages.
- From: Damien Sandras <dsandras src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] Ekiga: Fix bug with non text/plain IM/Messages.
- Date: Sat, 9 Feb 2013 15:19:32 +0000 (UTC)
commit d32f34bce82c96f82ec6d05c239dd8fd7f7f2ec3
Author: Damien Sandras <dsandras beip be>
Date: Sat Feb 9 16:08:50 2013 +0100
Ekiga: Fix bug with non text/plain IM/Messages.
Some softphones like Bria send intermediate xml messages to indicate the
user is composing. We do not support this, so better discard such
messages.
lib/engine/components/opal/sip-endpoint.cpp | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/lib/engine/components/opal/sip-endpoint.cpp b/lib/engine/components/opal/sip-endpoint.cpp
index 24a23d5..01a6471 100644
--- a/lib/engine/components/opal/sip-endpoint.cpp
+++ b/lib/engine/components/opal/sip-endpoint.cpp
@@ -767,6 +767,9 @@ bool
Opal::Sip::EndPoint::OnReceivedMESSAGE (OpalTransport & transport,
SIP_PDU & pdu)
{
+ if (pdu.GetMIME().GetContentType(false) != "text/plain")
+ return false; // Ignore what we do not handle.
+
PString from = pdu.GetMIME().GetFrom();
PINDEX j = from.Find (';');
if (j != P_MAX_INDEX)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]