Send image width/height for image and video attachments.

pull/1/head
Matthew Chen 7 years ago
parent 3a4180214f
commit 4218af13d5

@ -538,8 +538,8 @@ NSString *const kTSOutgoingMessageSentRecipientAll = @"kTSOutgoingMessageSentRec
NSInteger imageWidth = (NSInteger)round(imageSize.width);
NSInteger imageHeight = (NSInteger)round(imageSize.height);
if (imageWidth > 0 && imageHeight > 0) {
[builder setWidth:imageWidth];
[builder setHeight:imageHeight];
[builder setWidth:(UInt32)imageWidth];
[builder setHeight:(UInt32)imageHeight];
}
}

Loading…
Cancel
Save