libpurple/protocols/jabber/buddy.c

branch
next.major
changeset 31694
bf2950a7ced6
parent 31660
fd970a73f5ff
parent 31693
71f19e287209
child 32191
a4668d9dc8d1
--- a/libpurple/protocols/jabber/buddy.c	Sat Apr 16 20:33:30 2011 +0000
+++ b/libpurple/protocols/jabber/buddy.c	Mon Apr 18 06:32:04 2011 +0000
@@ -465,10 +465,22 @@
 	xmlnode *vc_node;
 	const struct tag_attr *tag_attr;
 
-	/* if we have't grabbed the remote vcard yet, we can't
+	/* if we haven't grabbed the remote vcard yet, we can't
 	 * assume that what we have here is correct */
-	if(!js->vcard_fetched)
+	if(!js->vcard_fetched) {
+		PurpleStoredImage *image;
+		g_free(js->initial_avatar_hash);
+		image = purple_buddy_icons_find_account_icon(purple_connection_get_account(gc));
+		if (image != NULL) {
+			js->initial_avatar_hash =
+					jabber_calculate_data_hash(purple_imgstore_get_data(image),
+					purple_imgstore_get_size(image), "sha1");
+			purple_imgstore_unref(image);
+		} else {
+			js->initial_avatar_hash = NULL;
+		}
 		return;
+	}
 
 	if (js->vcard_timer) {
 		purple_timeout_remove(js->vcard_timer);

mercurial