Fixed empty group avatar issue.

This commit is contained in:
Christine Corbett 2015-01-24 14:19:17 -10:00 committed by Frederic Jacobs
parent bf11775e10
commit 0e1a51e889
2 changed files with 3 additions and 3 deletions

View File

@ -5271,7 +5271,7 @@ A0 09 9A FF A8 8A 09 99</string>
<variation key="heightClass=regular-widthClass=compact" constant="60"/>
</constraint>
</constraints>
<state key="normal" image="empty-group-avatar@1x">
<state key="normal" image="empty-group-avatar">
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
</state>
<variation key="default">
@ -5475,7 +5475,7 @@ A0 09 9A FF A8 8A 09 99</string>
<image name="call_dark.png" width="50" height="50"/>
<image name="contact-options-action" width="44" height="44"/>
<image name="delete_history.png" width="50" height="50"/>
<image name="empty-group-avatar@1x" width="500" height="500"/>
<image name="empty-group-avatar" width="52" height="52"/>
<image name="endcall.png" width="100" height="100"/>
<image name="inbox-active@1x" width="66" height="66"/>
<image name="inbox-inactive@1x" width="66" height="66"/>

View File

@ -49,7 +49,7 @@
_snippetLabel.text = thread.lastMessageLabel;
_timeLabel.attributedText = [self dateAttributedString:thread.lastMessageDate];
if([thread isKindOfClass:[TSGroupThread class]] ) {
_contactPictureView.image = ((TSGroupThread*)thread).groupModel.groupImage!=nil ? ((TSGroupThread*)thread).groupModel.groupImage : [UIImage imageNamed:@"empty-group-avatar@1x"];
_contactPictureView.image = ((TSGroupThread*)thread).groupModel.groupImage!=nil ? ((TSGroupThread*)thread).groupModel.groupImage : [UIImage imageNamed:@"empty-group-avatar"];
}
else {
NSMutableString *initials = [NSMutableString string];