|
|
|
@ -1027,8 +1027,7 @@ const UIDataDetectorTypes kOWSAllowedDataDetectorTypes
|
|
|
|
|
if (self.viewItem.mediaAlbumItems.count == 1) {
|
|
|
|
|
// Honor the content aspect ratio for single media.
|
|
|
|
|
ConversationMediaAlbumItem *mediaAlbumItem = self.viewItem.mediaAlbumItems.firstObject;
|
|
|
|
|
if (mediaAlbumItem.attachmentStream && mediaAlbumItem.mediaSize.width > 0
|
|
|
|
|
&& mediaAlbumItem.mediaSize.height > 0) {
|
|
|
|
|
if (mediaAlbumItem.mediaSize.width > 0 && mediaAlbumItem.mediaSize.height > 0) {
|
|
|
|
|
CGSize mediaSize = mediaAlbumItem.mediaSize;
|
|
|
|
|
CGFloat contentAspectRatio = mediaSize.width / mediaSize.height;
|
|
|
|
|
// Clamp the aspect ratio so that very thin/wide content is presented
|
|
|
|
|