From: <bo...@us...> - 2006-12-10 23:33:05
|
Revision: 17951 http://svn.sourceforge.net/gaim/?rev=17951&view=rev Author: boler Date: 2006-12-10 15:33:03 -0800 (Sun, 10 Dec 2006) Log Message: ----------- gg: Don't duplicate "Status: Offline" message. This got broken by recent changes to Notify User Info. Modified Paths: -------------- trunk/libgaim/protocols/gg/gg.c Modified: trunk/libgaim/protocols/gg/gg.c =================================================================== --- trunk/libgaim/protocols/gg/gg.c 2006-12-10 23:32:28 UTC (rev 17950) +++ trunk/libgaim/protocols/gg/gg.c 2006-12-10 23:33:03 UTC (rev 17951) @@ -1572,7 +1572,8 @@ gaim_notify_user_info_add_pair(user_info, _("Message"), text); } g_free(text); - } else { + /* We don't want to duplicate 'Status: Offline'. */ + } else if (GAIM_BUDDY_IS_ONLINE(b)) { gaim_notify_user_info_add_pair(user_info, _("Status"), name); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |