comparison libpurple/protocols/jabber/disco.c @ 18163:703872bf33c6

server-side jabber vcards now take precedence over local vcards, so we no longer overwrite things we shouldn't (fixes #1013)
author Nathan Walp <nwalp@pidgin.im>
date Sun, 17 Jun 2007 15:27:35 +0000
parents 7f23135d9b68
children c5c265dff90c
comparison
equal deleted inserted replaced
18162:2b8460b599ea 18163:703872bf33c6
216 } 216 }
217 217
218 static void 218 static void
219 jabber_disco_finish_server_info_result_cb(JabberStream *js) 219 jabber_disco_finish_server_info_result_cb(JabberStream *js)
220 { 220 {
221
222 jabber_vcard_fetch_mine(js);
223
221 if (!(js->server_caps & JABBER_CAP_GOOGLE_ROSTER)) { 224 if (!(js->server_caps & JABBER_CAP_GOOGLE_ROSTER)) {
222 /* If the server supports JABBER_CAP_GOOGLE_ROSTER; we will have already requested it */ 225 /* If the server supports JABBER_CAP_GOOGLE_ROSTER; we will have already requested it */
223 jabber_roster_request(js); 226 jabber_roster_request(js);
224 } 227 }
225 228