Probably prevent setting a nil title for the menu item. Fixes #12772.
1.1 --- a/Frameworks/Adium Framework/Source/AIContactMenu.m Mon Aug 31 16:08:03 2009 -0400
1.2 +++ b/Frameworks/Adium Framework/Source/AIContactMenu.m Sun Sep 06 14:40:45 2009 -0400
1.3 @@ -290,7 +290,7 @@
1.4
1.5 NSString *displayName = listObject.displayName;
1.6
1.7 - if (!shouldUseDisplayName && listObject.formattedUID) {
1.8 + if (!displayName || (!shouldUseDisplayName && listObject.formattedUID)) {
1.9 displayName = listObject.formattedUID;
1.10 }
1.11