diff src/conversation.c @ 11804:648637d0a931

[gaim-migrate @ 14095] Don't log messages with the GAIM_MESSAGE_NO_LOG flag set. I'm not sure when this regressed, but it was probably my fault. :) committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 25 Oct 2005 00:58:24 +0000
parents dfdc286878f9
children 2bee8d023e23
line wrap: on
line diff
--- a/src/conversation.c	Mon Oct 24 23:13:50 2005 +0000
+++ b/src/conversation.c	Tue Oct 25 00:58:24 2005 +0000
@@ -905,7 +905,7 @@
 		}
 	}
 
-	if (gaim_conversation_is_logging(conv)) {
+	if (!(flags & GAIM_MESSAGE_NO_LOG) && gaim_conversation_is_logging(conv)) {
 		GList *log;
 
 		if (conv->logs == NULL)