Handle animated content type in TSAttachment:description: (#19)

Displaying icons for gifs was missing in messages list cells
(https://github.com/WhisperSystems/Signal-iOS/issues/1271).

//FREEBE
pull/1/head
ArkadiuszBanas 8 years ago committed by Michael Kirk
parent 9aa88f6ce5
commit 01ab8d132d

@ -38,6 +38,8 @@
return [NSString stringWithFormat:@"📽 %@", attachmentString];
} else if ([MIMETypeUtil isAudio:self.contentType]) {
return [NSString stringWithFormat:@"📻 %@", attachmentString];
} else if ([MIMETypeUtil isAnimated:self.contentType]) {
return [NSString stringWithFormat:@"🎡 %@", attachmentString];
}
return attachmentString;

Loading…
Cancel
Save