# HG changeset patch # User Etan Reisner # Date 1211054098 0 # Node ID e206ff2e5efa233d16c0e4a2f1fe135004f04a01 # Parent da5d1ecc5c20ce00b137c6afad45718f42020176 Remove an else block which just calls pidgin_blist_get_emblem on a PurpleChat, but pidgin_blist_get_emblem will always return NULL for a chat at the moment so this is useless. diff -r da5d1ecc5c20 -r e206ff2e5efa pidgin/gtkconv.c --- a/pidgin/gtkconv.c Sat May 17 19:53:28 2008 +0000 +++ b/pidgin/gtkconv.c Sat May 17 19:54:58 2008 +0000 @@ -2511,10 +2511,6 @@ PurpleBuddy *b = purple_find_buddy(conv->account, conv->name); if (b) emblem = pidgin_blist_get_emblem((PurpleBlistNode*)b); - } else { - PurpleChat *c = purple_blist_find_chat(conv->account, conv->name); - if (c) - emblem = pidgin_blist_get_emblem((PurpleBlistNode*)c); } g_return_if_fail(status != NULL);