Text previews for contact shares.

This commit is contained in:
Matthew Chen 2018-05-01 11:55:22 -04:00
parent 424bcbf83e
commit 00eadd629f

View file

@ -262,8 +262,11 @@ static const NSUInteger OWSMessageSchemaVersion = 4;
} else if (attachmentDescription.length > 0) {
return attachmentDescription;
} else if (self.contactShare) {
// TODO: Include properly formatted name.
return @"👤";
if (CurrentAppContext().isRTL) {
return [self.contactShare.displayName stringByAppendingString:@" 👤"];
} else {
return [@"👤 " stringByAppendingString:self.contactShare.displayName];
}
} else {
OWSFail(@"%@ message has neither body nor attachment.", self.logTag);
// TODO: We should do better here.