Respond to CR.

pull/1/head
Matthew Chen 7 years ago
parent f230717b68
commit 2b3b08d7c5

@ -183,7 +183,11 @@ NSUInteger const TSAttachmentSchemaVersion = 4;
} else if ([MIMETypeUtil isVideo:contentType]) {
return @"🎥";
} else if ([MIMETypeUtil isAudio:contentType]) {
return @"🎧";
if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(11, 0)) {
return @"🎧";
} else {
return @"📻";
}
} else if ([MIMETypeUtil isAnimated:contentType]) {
return @"🎡";
} else {

Loading…
Cancel
Save