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 2687b4225f612ad2
parent 2686 2ab9bcbacea2
child 2688 a779f1e623a9
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	Sun Sep 06 13:05:05 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