Probably prevent setting a nil title for the menu item. Fixes #12772.
authorZachary West <zacw@adium.im>
Sun Sep 06 14:40:45 2009 -0400 (2009-09-06)
changeset 26053b3a28a01bc0
parent 2604 a6965163aade
child 2606 adc383366ee4
Probably prevent setting a nil title for the menu item. Fixes #12772.
Frameworks/Adium Framework/Source/AIContactMenu.m
     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