Problem when retrieving the CC



Hi,

tinymail was retrieving the bcc instead of the cc when tny_camel_msg_header_get_cc was invoked. Find the patch attached.

Br
Index: tny-camel-msg-header.c
===================================================================
--- tny-camel-msg-header.c	(revision 3104)
+++ tny-camel-msg-header.c	(working copy)
@@ -198,7 +198,7 @@
 		me->cc = decode_it (me->msg, enc);
 	}
 
-	return (const gchar *) me->bcc;
+	return (const gchar *) me->cc;
 }
 
 static const gchar*


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]