From 2b3b08d7c5750fe994256da1fb021f021a14007e Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Thu, 5 Apr 2018 10:23:56 -0400 Subject: [PATCH] Respond to CR. --- SignalServiceKit/src/Messages/Attachments/TSAttachment.m | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/SignalServiceKit/src/Messages/Attachments/TSAttachment.m b/SignalServiceKit/src/Messages/Attachments/TSAttachment.m index 70b153a4c..1d4e0957d 100644 --- a/SignalServiceKit/src/Messages/Attachments/TSAttachment.m +++ b/SignalServiceKit/src/Messages/Attachments/TSAttachment.m @@ -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 {