From 9d9d1e4978656d9fdb1698eebe9268e6c7870200 Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Thu, 18 Feb 2010 22:05:17 +0100 Subject: [PATCH] filetransfer: re-enabled embedded INVITE processing for OC 2007 With signalling removed from file transfer processing, embedded INVITE works with OC 2007. --- src/core/sipe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/sipe.c b/src/core/sipe.c index 016129fd..e7957159 100644 --- a/src/core/sipe.c +++ b/src/core/sipe.c @@ -5131,7 +5131,7 @@ static void process_incoming_invite(struct sipe_account_data *sip, struct sipmsg /* also enabled for 2005 file transfer. Didn't work otherwise. */ ms_text_format = sipmsg_find_header(msg, "ms-text-format"); if (is_multiparty || - (!sip->ocs2007 && ms_text_format && g_str_has_prefix(ms_text_format, "text/x-msmsgsinvite")) ) + (ms_text_format && g_str_has_prefix(ms_text_format, "text/x-msmsgsinvite")) ) { if (ms_text_format) { if (g_str_has_prefix(ms_text_format, "text/x-msmsgsinvite")) -- 2.11.4.GIT