Mercurial > pidgin
diff src/protocols/msn/userlist.c @ 9223:f46154d6de2b
[gaim-migrate @ 10019]
Make sure we're checking if the user that added us is already in the FL
list as well.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Sun, 06 Jun 2004 20:09:45 +0000 |
| parents | 08e7ccb4610d |
| children | 554ef91db2dd |
line wrap: on
line diff
--- a/src/protocols/msn/userlist.c Sun Jun 06 19:06:22 2004 +0000 +++ b/src/protocols/msn/userlist.c Sun Jun 06 20:09:45 2004 +0000 @@ -246,8 +246,11 @@ "%s has added you to his or her contact list.\n", passport); - if (!(user->list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP))) + if (!(user->list_op & (MSN_LIST_AL_OP | MSN_LIST_BL_OP | + MSN_LIST_FL_OP))) + { got_new_entry(gc, passport, friendly); + } } user->list_op |= (1 << list_id);
