comparison plugins/notify.c @ 10345:2e01c503aa4f

[gaim-migrate @ 11556] Patch 1078151 from Felipe Contreras to fix some more MSN bugs: "User Dislpay messages, and other less used, did not set an slpcall, so the callback that should not be called, was called (in some very special cases)." ... "Here it goes the real real one, as far as I can tell. Cleaning + organizing + documentation + hard bug fix = big patch." -- Felipe Contreras I also fixed drag-and-drop to conversation window file transfers (which I had broken when I fixed some other dnd thing), made the debug output of the autoreconnect plugin more useful, and stopped the message notification plugin notifying you for messages sent by ignored users. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 11 Dec 2004 20:01:58 +0000
parents a66cf83552dc
children 45ad1d15fab3
comparison
equal deleted inserted replaced
10344:5976491e07a7 10345:2e01c503aa4f
222 222
223 static gboolean 223 static gboolean
224 chat_recv_im(GaimAccount *account, char *sender, char *message, 224 chat_recv_im(GaimAccount *account, char *sender, char *message,
225 GaimConversation *conv, int *flags) 225 GaimConversation *conv, int *flags)
226 { 226 {
227 if (gaim_conv_chat_is_user_ignored(GAIM_CONV_CHAT(conv), sender))
228 return FALSE;
229
227 notify(conv, TRUE); 230 notify(conv, TRUE);
228 231
229 return FALSE; 232 return FALSE;
230 } 233 }
231 234