[gaim-migrate @ 8605]

Sat, 27 Dec 2003 00:43:42 +0000

author
Christian Hammond <chipx86@chipx86.com>
date
Sat, 27 Dec 2003 00:43:42 +0000
changeset 7934
651bf920e54c
parent 7933
a59beea5a510
child 7935
c06da6c1e845

[gaim-migrate @ 8605]
We now ensure that the friendly name is set on a user while loading the
buddy list, instead of just assuming it will be set. This should fix bugs
#844685, #856533, and a handful of others.

src/protocols/msn/notification.c file | annotate | diff | comparison | revisions
--- a/src/protocols/msn/notification.c	Sat Dec 27 00:31:43 2003 +0000
+++ b/src/protocols/msn/notification.c	Sat Dec 27 00:43:42 2003 +0000
@@ -1200,6 +1200,9 @@
 
 			user = msn_user_new(session, passport, friend);
 
+			/* Ensure we have a friendly name set. */
+			msn_user_set_name(user, friend);
+
 			tokens = g_strsplit(group_nums, ",", -1);
 
 			gaim_debug_misc("msn", "Fetching group IDs from '%s'\n",
@@ -1260,6 +1263,9 @@
 				pa->user = msn_user_new(session, passport, friend);
 				pa->gc   = gc;
 
+				/* Ensure we have a friendly name set. */
+				msn_user_set_name(pa->user, friend);
+
 				g_snprintf(msg, sizeof(msg),
 						   _("The user %s (%s) wants to add you to their "
 							 "buddy list."),

mercurial