Mercurial > pidgin
comparison src/protocols/msn/sync.c @ 10451:92d4a25fd33c
[gaim-migrate @ 11717]
This is patch 1090620 from Felipe Contreras to improve the handling of the
Individuals group on MSN and better buddy updates (modified by me to work in
HEAD)
Also included is my fix for bug 1090087 "MSN Groupchat Double Invite Crash",
a few spelling corrections, and make some more strings translatable.
committer: Tailor Script <tailor@pidgin.im>
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 30 Dec 2004 15:55:19 +0000 |
parents | 86a6d78b070b |
children | 967ef719cb62 |
comparison
equal
deleted
inserted
replaced
10450:577fdf4110fc | 10451:92d4a25fd33c |
---|---|
96 | 96 |
97 group_id = atoi(cmd->params[0]); | 97 group_id = atoi(cmd->params[0]); |
98 name = gaim_url_decode(cmd->params[1]); | 98 name = gaim_url_decode(cmd->params[1]); |
99 | 99 |
100 group = msn_group_new(session->userlist, group_id, name); | 100 group = msn_group_new(session->userlist, group_id, name); |
101 | |
102 /* HACK */ | |
103 if (group_id == 0) | |
104 /* Group of ungroupped buddies */ | |
105 return; | |
101 | 106 |
102 if ((g = gaim_find_group(name)) == NULL) | 107 if ((g = gaim_find_group(name)) == NULL) |
103 { | 108 { |
104 g = gaim_group_new(name); | 109 g = gaim_group_new(name); |
105 gaim_blist_add_group(g, NULL); | 110 gaim_blist_add_group(g, NULL); |